diff options
| author | tmk <nobody@nowhere> | 2013-03-07 03:30:08 +0900 |
|---|---|---|
| committer | tmk <nobody@nowhere> | 2013-03-07 03:30:08 +0900 |
| commit | 359b68d35f0763ab0cafa2fb800e0a3497291f95 (patch) | |
| tree | 8b048e024f1af5b9394d8883c208ee923c936b64 /common/eeconfig.c | |
| parent | 5d6b848a157a2e94859949961297d40da6a77527 (diff) | |
| download | qmk_firmware-359b68d35f0763ab0cafa2fb800e0a3497291f95.tar.gz qmk_firmware-359b68d35f0763ab0cafa2fb800e0a3497291f95.zip | |
Add eeconfig.c - eeprom stored paramerters
Diffstat (limited to 'common/eeconfig.c')
| -rw-r--r-- | common/eeconfig.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/common/eeconfig.c b/common/eeconfig.c new file mode 100644 index 000000000..a5834aa2c --- /dev/null +++ b/common/eeconfig.c | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | #include <stdint.h> | ||
| 2 | #include <stdbool.h> | ||
| 3 | #include <avr/eeprom.h> | ||
| 4 | #include "eeconfig.h" | ||
| 5 | |||
| 6 | |||
| 7 | void eeconfig_init(void) | ||
| 8 | { | ||
| 9 | eeprom_write_word(EECONFIG_MAGIC, EECONFIG_MAGIC_NUMBER); | ||
| 10 | eeprom_write_byte(EECONFIG_DEBUG, 0); | ||
| 11 | eeprom_write_byte(EECONFIG_DEFAULT_LAYER, 0); | ||
| 12 | eeprom_write_byte(EECONFIG_MODIFIER, 0); | ||
| 13 | eeprom_write_byte(EECONFIG_MOUSEKEY_ACCEL, 0); | ||
| 14 | } | ||
| 15 | |||
| 16 | bool eeconfig_initialized(void) | ||
| 17 | { | ||
| 18 | return (eeprom_read_word(EECONFIG_MAGIC) == EECONFIG_MAGIC_NUMBER); | ||
| 19 | } | ||
| 20 | |||
| 21 | uint8_t eeconfig_read_debug(void) { return eeprom_read_byte(EECONFIG_DEBUG); } | ||
| 22 | void eeconfig_write_debug(uint8_t val) { eeprom_write_byte(EECONFIG_DEBUG, val); } | ||
| 23 | |||
| 24 | uint8_t eeconfig_read_defalt_layer(void) { return eeprom_read_byte(EECONFIG_DEFAULT_LAYER); } | ||
| 25 | void eeconfig_write_defalt_layer(uint8_t val) { eeprom_write_byte(EECONFIG_DEFAULT_LAYER, val); } | ||
| 26 | |||
| 27 | uint8_t eeconfig_read_modifier(void) { return eeprom_read_byte(EECONFIG_MODIFIER); } | ||
| 28 | void eeconfig_write_modifier(uint8_t val) { eeprom_write_byte(EECONFIG_MODIFIER, val); } | ||
| 29 | |||
