summaryrefslogtreecommitdiff
path: root/quantum/encoder.h
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2023-04-16 01:18:44 +1000
committerGitHub <noreply@github.com>2023-04-15 16:18:44 +0100
commitc9f619124d41637ece157570703423c3890cb6c2 (patch)
tree8a7d3f3e816eda3814e647c195b8579d49697158 /quantum/encoder.h
parent0ddb7d7863d180c571091dd1fa154abb53de5a04 (diff)
Encodermap direction define. (#20454)
Diffstat (limited to 'quantum/encoder.h')
-rw-r--r--quantum/encoder.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/quantum/encoder.h b/quantum/encoder.h
index 4eb67fa25d..7644853b30 100644
--- a/quantum/encoder.h
+++ b/quantum/encoder.h
@@ -57,7 +57,8 @@ void encoder_update_raw(uint8_t* slave_state);
#define NUM_ENCODERS_MAX_PER_SIDE MAX(NUM_ENCODERS_LEFT, NUM_ENCODERS_RIGHT)
#ifdef ENCODER_MAP_ENABLE
+# define NUM_DIRECTIONS 2
# define ENCODER_CCW_CW(ccw, cw) \
{ (cw), (ccw) }
-extern const uint16_t encoder_map[][NUM_ENCODERS][2];
+extern const uint16_t encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS];
#endif // ENCODER_MAP_ENABLE