diff options
author | JayceFayne <13365789+JayceFayne@users.noreply.github.com> | 2021-09-09 03:34:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-08 18:34:49 -0700 |
commit | f3bef84dace5d1d938f9d02be644bf421a4a3de1 (patch) | |
tree | 173a064a2a2ce2821eea8d8c42c4b9b04899d265 /quantum/keyboard.c | |
parent | da81e5c7cd700cdb3ecd750ae8044f514fb65ca2 (diff) | |
download | qmk_firmware-f3bef84dace5d1d938f9d02be644bf421a4a3de1.tar.gz qmk_firmware-f3bef84dace5d1d938f9d02be644bf421a4a3de1.zip |
`ST7565_TIMEOUT 0` and `ST7565_DISABLE_TIMEOUT` should behave the same (#14315)
Diffstat (limited to 'quantum/keyboard.c')
-rw-r--r-- | quantum/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/keyboard.c b/quantum/keyboard.c index 6cfbee3e0..b98fc64e4 100644 --- a/quantum/keyboard.c +++ b/quantum/keyboard.c | |||
@@ -491,7 +491,7 @@ MATRIX_LOOP_END: | |||
491 | 491 | ||
492 | #ifdef ST7565_ENABLE | 492 | #ifdef ST7565_ENABLE |
493 | st7565_task(); | 493 | st7565_task(); |
494 | # ifndef ST7565_DISABLE_TIMEOUT | 494 | # if ST7565_TIMEOUT > 0 |
495 | // Wake up display if user is using those fabulous keys or spinning those encoders! | 495 | // Wake up display if user is using those fabulous keys or spinning those encoders! |
496 | # ifdef ENCODER_ENABLE | 496 | # ifdef ENCODER_ENABLE |
497 | if (matrix_changed || encoders_changed) st7565_on(); | 497 | if (matrix_changed || encoders_changed) st7565_on(); |