1
0
Fork 0

keebio/iris: Add ifdefs to encoder callbacks (#16642)

This commit is contained in:
Ryan 2022-03-15 00:57:44 +11:00 committed by GitHub
parent c17323b0f5
commit 5fb269b2b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 0 deletions

View file

@ -64,6 +64,7 @@ led_config_t g_led_config = { {
} };
#endif
#ifdef ENCODER_ENABLE
bool encoder_update_kb(uint8_t index, bool clockwise) {
if (!encoder_update_user(index, clockwise)) { return false; }
if (index == 0) {
@ -81,3 +82,4 @@ bool encoder_update_kb(uint8_t index, bool clockwise) {
}
return false;
}
#endif