X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=common%2Feeconfig.h;h=3cd1a174f6658b2e795e8b0980d9cddf8f93f6d6;hb=b9e265368fde73daff069788dcb58c8230d01b32;hp=526cee78364b7b60e702b9229d094ef897a10426;hpb=e59fb6f908e3e05ed135bf6d004524b0b6bf9119;p=tmk_firmware.git diff --git a/common/eeconfig.h b/common/eeconfig.h index 526cee7..3cd1a17 100644 --- a/common/eeconfig.h +++ b/common/eeconfig.h @@ -19,6 +19,7 @@ along with this program. If not, see . #define EECONFIG_H #include +#include #define EECONFIG_MAGIC_NUMBER (uint16_t)0xFEED @@ -29,6 +30,7 @@ along with this program. If not, see . #define EECONFIG_DEFAULT_LAYER (uint8_t *)3 #define EECONFIG_KEYMAP (uint8_t *)4 #define EECONFIG_MOUSEKEY_ACCEL (uint8_t *)5 +#define EECONFIG_BACKLIGHT (uint8_t *)6 /* debug bit */ @@ -45,6 +47,7 @@ along with this program. If not, see . #define EECONFIG_KEYMAP_NO_GUI (1<<4) #define EECONFIG_KEYMAP_SWAP_GRAVE_ESC (1<<5) #define EECONFIG_KEYMAP_SWAP_BACKSLASH_BACKSPACE (1<<6) +#define EECONFIG_KEYMAP_NKRO (1<<7) bool eeconfig_is_enabled(void); @@ -58,10 +61,15 @@ void eeconfig_disable(void); uint8_t eeconfig_read_debug(void); void eeconfig_write_debug(uint8_t val); -uint8_t eeconfig_read_defalt_layer(void); -void eeconfig_write_defalt_layer(uint8_t val); +uint8_t eeconfig_read_default_layer(void); +void eeconfig_write_default_layer(uint8_t val); uint8_t eeconfig_read_keymap(void); void eeconfig_write_keymap(uint8_t val); +#ifdef BACKLIGHT_ENABLE +uint8_t eeconfig_read_backlight(void); +void eeconfig_write_backlight(uint8_t val); +#endif + #endif