diff options
author | XScorpion2 <rcalt2vt@gmail.com> | 2019-04-03 18:01:17 -0500 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-04-03 16:01:17 -0700 |
commit | 63177760deaf23bb1f676974cecf211676285604 (patch) | |
tree | a0d60f4f55ef9632a20631c6f96b3f2e4e00367c /quantum/encoder.h | |
parent | 17e7762de7e3fdfc61c20aa61022f47370630c6a (diff) |
Added encoder support to split common code (#5477)
* Added slave encoder support to split common
* Fixing handwired/xealous/rev1 compile error
* Removed unnecessary ifdef
Diffstat (limited to 'quantum/encoder.h')
-rw-r--r-- | quantum/encoder.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/quantum/encoder.h b/quantum/encoder.h index 2024fa303f..ec09a8cc47 100644 --- a/quantum/encoder.h +++ b/quantum/encoder.h @@ -19,11 +19,13 @@ #include "quantum.h" -#define COUNTRECLOCKWISE 0 -#define CLOCKWISE 1 - void encoder_init(void); void encoder_read(void); void encoder_update_kb(int8_t index, bool clockwise); void encoder_update_user(int8_t index, bool clockwise); + +#ifdef SPLIT_KEYBOARD +void encoder_state_raw(uint8_t* slave_state); +void encoder_update_raw(uint8_t* slave_state); +#endif |