logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git
commit: 6e55870a82e8cfecd379242fd58829b37fa8ffa4
parent e15d9ca4b3329c5c97f920547c086ad768ec3808
Author: Andrew Litt <al177@users.noreply.github.com>
Date:   Fri, 27 Jun 2025 14:11:43 -0500

`inland/kb83`: Remove unnecessary EEPROM write (#25401)

There's no reason to save the base layer to EEPROM when the base layer
is set based on DIP switch.

Diffstat:

Mkeyboards/inland/kb83/kb83.c6+-----
1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/keyboards/inland/kb83/kb83.c b/keyboards/inland/kb83/kb83.c @@ -313,11 +313,7 @@ bool dip_switch_update_kb(uint8_t index, bool active) { return false; } if (index == 0) { - default_layer_set(1UL << (active ? 2 : 0)); - } - if(active){ - keymap_config.no_gui = 0; - eeconfig_update_keymap(&keymap_config); + default_layer_set(1UL << (active ? MAC_B : WIN_B)); } return true; }