mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-17 17:35:30 +00:00
ploopyco/trackball_mini: always update encoder (#18561)
This commit is contained in:
parent
ab667a8b64
commit
444760efcb
1 changed files with 9 additions and 8 deletions
|
@ -92,6 +92,13 @@ bool encoder_update_kb(uint8_t index, bool clockwise) {
|
|||
}
|
||||
|
||||
void process_wheel(void) {
|
||||
uint16_t p1 = adc_read(OPT_ENC1_MUX);
|
||||
uint16_t p2 = adc_read(OPT_ENC2_MUX);
|
||||
|
||||
if (debug_encoder) dprintf("OPT1: %d, OPT2: %d\n", p1, p2);
|
||||
|
||||
int8_t dir = opt_encoder_handler(p1, p2);
|
||||
|
||||
// If the mouse wheel was just released, do not scroll.
|
||||
if (timer_elapsed(lastMidClick) < SCROLL_BUTT_DEBOUNCE) return;
|
||||
|
||||
|
@ -105,16 +112,10 @@ void process_wheel(void) {
|
|||
#endif
|
||||
}
|
||||
|
||||
lastScroll = timer_read();
|
||||
uint16_t p1 = adc_read(OPT_ENC1_MUX);
|
||||
uint16_t p2 = adc_read(OPT_ENC2_MUX);
|
||||
|
||||
if (debug_encoder) dprintf("OPT1: %d, OPT2: %d\n", p1, p2);
|
||||
|
||||
int8_t dir = opt_encoder_handler(p1, p2);
|
||||
|
||||
if (dir == 0) return;
|
||||
encoder_update_kb(0, dir > 0);
|
||||
|
||||
lastScroll = timer_read();
|
||||
}
|
||||
|
||||
void pointing_device_init_kb(void) {
|
||||
|
|
Loading…
Reference in a new issue