Model100: Increase the available EEPROM layers to 8

The Model100 has a lot more space available compared to the Model01, so we can
have more layers in EEPROM. While we could have more than 8, 8 is the limit that
OneShot and dual-use keys support via Chrysalis, so to avoid potential
confusion, lets have 8 layers only.

Signed-off-by: Gergely Nagy <algernon@keyboard.io>
pull/1201/head
Gergely Nagy 2 years ago
parent b5f0fc5ec9
commit da024d6bf9
No known key found for this signature in database
GPG Key ID: AC1E90BAC433F68F

@ -583,16 +583,16 @@ void setup() {
LEDOff.activate(); LEDOff.activate();
// To make the keymap editable without flashing new firmware, we store // To make the keymap editable without flashing new firmware, we store
// additional layers in EEPROM. For now, we reserve space for five layers. If // additional layers in EEPROM. For now, we reserve space for eight layers. If
// one wants to use these layers, just set the default layer to one in EEPROM, // one wants to use these layers, just set the default layer to one in EEPROM,
// by using the `settings.defaultLayer` Focus command, or by using the // by using the `settings.defaultLayer` Focus command, or by using the
// `keymap.onlyCustom` command to use EEPROM layers only. // `keymap.onlyCustom` command to use EEPROM layers only.
EEPROMKeymap.setup(5); EEPROMKeymap.setup(8);
// We need to tell the Colormap plugin how many layers we want to have custom // We need to tell the Colormap plugin how many layers we want to have custom
// maps for. To make things simple, we set it to five layers, which is how // maps for. To make things simple, we set it to eight layers, which is how
// many editable layers we have (see above). // many editable layers we have (see above).
ColormapEffect.max_layers(5); ColormapEffect.max_layers(8);
// For Dynamic Macros, we need to reserve storage space for the editable // For Dynamic Macros, we need to reserve storage space for the editable
// macros. A kilobyte is a reasonable default. // macros. A kilobyte is a reasonable default.

Loading…
Cancel
Save