diff options
author | Ryan <fauxpark@gmail.com> | 2022-03-15 00:57:44 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-14 13:57:44 +0000 |
commit | 5fb269b2b49f31dcee34e3e088ef77cd016d0450 (patch) | |
tree | c2deddb10fa26b81e89b62d775fa6384a68b2e6a /keyboards/keebio/iris/rev5/rev5.c | |
parent | c17323b0f5fddf891929e6a25232825769a64e28 (diff) |
keebio/iris: Add ifdefs to encoder callbacks (#16642)
Diffstat (limited to 'keyboards/keebio/iris/rev5/rev5.c')
-rw-r--r-- | keyboards/keebio/iris/rev5/rev5.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/keyboards/keebio/iris/rev5/rev5.c b/keyboards/keebio/iris/rev5/rev5.c index 2a89c6923b..b597c05de8 100644 --- a/keyboards/keebio/iris/rev5/rev5.c +++ b/keyboards/keebio/iris/rev5/rev5.c @@ -13,6 +13,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "rev5.h" +#ifdef ENCODER_ENABLE bool encoder_update_kb(uint8_t index, bool clockwise) { if (!encoder_update_user(index, clockwise)) { return false; } if (index == 0) { @@ -30,3 +31,4 @@ bool encoder_update_kb(uint8_t index, bool clockwise) { } return false; } +#endif |