bug fix quantum/dip_switch.c

This commit is contained in:
mtei 2020-04-08 19:01:03 +09:00
parent 4b13ebb996
commit 7bc8d033bc

View File

@ -52,7 +52,7 @@ void dip_switch_read(bool forced) {
for (uint8_t i = 0; i < NUMBER_OF_DIP_SWITCHES; i++) {
dip_switch_state[i] = !readPin(dip_switch_pad[i]);
dip_switch_mask |= dip_switch_state[i] << i;
if (last_dip_switch_state[i] ^ dip_switch_state[i] || forced) {
if (last_dip_switch_state[i] != dip_switch_state[i] || forced) {
has_dip_state_changed = true;
dip_switch_update_kb(i, dip_switch_state[i]);
}
@ -60,5 +60,5 @@ void dip_switch_read(bool forced) {
if (has_dip_state_changed) {
dip_switch_update_mask_kb(dip_switch_mask);
}
memcpy(last_dip_switch_state, dip_switch_state, sizeof(&dip_switch_state));
memcpy(last_dip_switch_state, dip_switch_state, sizeof(dip_switch_state));
}