summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@diac24.net>2011-03-06 06:45:24 +0100
committerDavid Lamparter <equinox@diac24.net>2011-03-06 06:45:24 +0100
commitd3dcf97e28cfeffe5d2e27a119077e12b61b2e7e (patch)
tree44bf0f8f022e4168f613f79c8b21bb39a8dd3e2e
parent75ff498d410a42b4cce52409f2abcfa9e3856143 (diff)
use eeprom for pin
-rw-r--r--Makefile2
-rw-r--r--kbc.c16
2 files changed, 14 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 581165c..3f0732f 100644
--- a/Makefile
+++ b/Makefile
@@ -17,3 +17,3 @@ LDXX=g++ -g
-love: kbc.flash
+love: kbc.flash kbc.eeprom
diff --git a/kbc.c b/kbc.c
index 6a04e4a..81ba569 100644
--- a/kbc.c
+++ b/kbc.c
@@ -7,2 +7,3 @@
#include <avr/pgmspace.h>
+#include <avr/eeprom.h>
#include <util/delay.h>
@@ -333,3 +334,3 @@ static uint8_t error;
-static const char passwd[sizeof(PIN) - 1] = PIN;
+static const EEMEM char passwd[sizeof(PIN) - 1] = PIN;
static char code[sizeof(PIN)];
@@ -545,2 +546,4 @@ static void handle_keypress(uint8_t data)
if (lock || unlock) {
+ uint8_t eebyte, pos, ok = 1;
+
/* passwd: a b c d
@@ -548,4 +551,7 @@ static void handle_keypress(uint8_t data)
*/
+
+ if (code[0])
+ ok = 0;
#ifdef KILLSWITCH
- if (code[0] || !memcmp("9164", code + 1, 4)) {
+ if (!memcmp("9164", code + 1, 4)) {
error = 0;
@@ -555,3 +561,7 @@ static void handle_keypress(uint8_t data)
#endif
- if (code[0] || memcmp(passwd, code + 1, sizeof(passwd))) {
+ for (pos = 1; pos < sizeof(code); pos++)
+ if (code[pos] != eeprom_read_byte(passwd + pos - 1))
+ ok = 0;
+
+ if (!ok) {
dbg_wr(0x20);