diff options
author | tmk <nobody@nowhere> | 2013-06-22 16:14:56 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-06-22 16:24:56 +0900 |
commit | 9de9d719527c7a8cac71d0bc49ba1d2d4f63cf06 (patch) | |
tree | 5cfd02ffd53d5be7c40453644558319f75b48fa8 /common/eeconfig.c | |
parent | 2593ae132812414f02e7cf483bb141cd2c78595c (diff) |
Add default layer config to bootmagic
Diffstat (limited to 'common/eeconfig.c')
-rw-r--r-- | common/eeconfig.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/eeconfig.c b/common/eeconfig.c index 0481d4b9c3..a833f4db9c 100644 --- a/common/eeconfig.c +++ b/common/eeconfig.c @@ -30,8 +30,8 @@ bool eeconfig_is_enabled(void) uint8_t eeconfig_read_debug(void) { return eeprom_read_byte(EECONFIG_DEBUG); } void eeconfig_write_debug(uint8_t val) { eeprom_write_byte(EECONFIG_DEBUG, val); } -uint8_t eeconfig_read_defalt_layer(void) { return eeprom_read_byte(EECONFIG_DEFAULT_LAYER); } -void eeconfig_write_defalt_layer(uint8_t val) { eeprom_write_byte(EECONFIG_DEFAULT_LAYER, val); } +uint8_t eeconfig_read_default_layer(void) { return eeprom_read_byte(EECONFIG_DEFAULT_LAYER); } +void eeconfig_write_default_layer(uint8_t val) { eeprom_write_byte(EECONFIG_DEFAULT_LAYER, val); } uint8_t eeconfig_read_keymap(void) { return eeprom_read_byte(EECONFIG_KEYMAP); } void eeconfig_write_keymap(uint8_t val) { eeprom_write_byte(EECONFIG_KEYMAP, val); } |