1
0
Fork 0

Added encoder support to split common code (#5477)

* Added slave encoder support to split common

* Fixing handwired/xealous/rev1 compile error

* Removed unnecessary ifdef
This commit is contained in:
XScorpion2 2019-04-03 18:01:17 -05:00 committed by Drashna Jaelre
parent 17e7762de7
commit 63177760de
4 changed files with 106 additions and 19 deletions

View file

@ -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