diff options
author | Drashna Jaelre <drashna@live.com> | 2021-07-01 08:22:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-01 08:22:21 -0700 |
commit | 0bde920817ef458f2ad61a66ce76a2535bbc261b (patch) | |
tree | 9c7078bd67547fc44085cec1fbfbc82a47047161 /keyboards/pandora | |
parent | 8f78be076debfc073741f1bc1ba424f1271191d9 (diff) |
Convert Dip Switch callbacks to boolean functions (#13399)
Diffstat (limited to 'keyboards/pandora')
-rw-r--r-- | keyboards/pandora/keymaps/default/keymap.c | 3 | ||||
-rw-r--r-- | keyboards/pandora/keymaps/via/keymap.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/keyboards/pandora/keymaps/default/keymap.c b/keyboards/pandora/keymaps/default/keymap.c index eea641d195..1878f078ce 100644 --- a/keyboards/pandora/keymaps/default/keymap.c +++ b/keyboards/pandora/keymaps/default/keymap.c @@ -30,7 +30,7 @@ bool encoder_update_user(uint8_t index, bool clockwise) { } // Encoder click function -void dip_switch_update_user(uint8_t index, bool active) { +bool dip_switch_update_user(uint8_t index, bool active) { switch (index) { /* First encoder */ case 0: @@ -39,4 +39,5 @@ void dip_switch_update_user(uint8_t index, bool active) { } break; } + return true; } diff --git a/keyboards/pandora/keymaps/via/keymap.c b/keyboards/pandora/keymaps/via/keymap.c index ae97463f61..eb2007447b 100644 --- a/keyboards/pandora/keymaps/via/keymap.c +++ b/keyboards/pandora/keymaps/via/keymap.c @@ -45,7 +45,7 @@ bool encoder_update_user(uint8_t index, bool clockwise) { } // Encoder click function -void dip_switch_update_user(uint8_t index, bool active) { +bool dip_switch_update_user(uint8_t index, bool active) { switch (index) { /* First encoder */ case 0: @@ -54,4 +54,5 @@ void dip_switch_update_user(uint8_t index, bool active) { } break; } + return true; } |