diff options
author | Wilba <Jason.S.Williams@gmail.com> | 2018-11-14 03:31:25 +1100 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-11-13 08:31:25 -0800 |
commit | 2dea540afbfcffaea82f70b6642c39aedb9e3b5b (patch) | |
tree | c61a59306a52a4d12d6b62eec5370721e0777bf4 /keyboards/wilba_tech/wt65_a/config.h | |
parent | caa293a8f77447891b02d5f8c91b209f9a082cc9 (diff) |
Refactoring M6-A, M6-B, Zeal60, Zeal65, WT60-A, WT65-A, WT80-A (#4417)
* Refactored M6-B to use Zeal60 RGB backlight code
* Fixed M6-B LED co-ordinates
* Minor changes to RGB config for Zeal65
* Added dynamic keymaps to WT80-A, WT60-A, WT-80A, U80-A
Diffstat (limited to 'keyboards/wilba_tech/wt65_a/config.h')
-rw-r--r-- | keyboards/wilba_tech/wt65_a/config.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/keyboards/wilba_tech/wt65_a/config.h b/keyboards/wilba_tech/wt65_a/config.h index fa919f186b..5f535c6a79 100644 --- a/keyboards/wilba_tech/wt65_a/config.h +++ b/keyboards/wilba_tech/wt65_a/config.h @@ -185,3 +185,20 @@ /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ //#define MIDI_TONE_KEYCODE_OCTAVES 1 +#define DYNAMIC_KEYMAP_LAYER_COUNT 4 + +// EEPROM usage + +// TODO: refactor with new user EEPROM code (coming soon) +#define EEPROM_MAGIC 0x451F +#define EEPROM_MAGIC_ADDR 32 +// Bump this every time we change what we store +// This will automatically reset the EEPROM with defaults +// and avoid loading invalid data from the EEPROM +#define EEPROM_VERSION 0x07 +#define EEPROM_VERSION_ADDR 34 + +// Backlight config starts after EEPROM version +#define RGB_BACKLIGHT_CONFIG_EEPROM_ADDR 35 +// Dynamic keymap starts after backlight config (35+37) +#define DYNAMIC_KEYMAP_EEPROM_ADDR 72 |