diff options
author | comaid <44457151+comaid@users.noreply.github.com> | 2018-11-13 05:19:29 +0900 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-11-12 12:19:29 -0800 |
commit | aa03049015855cdd5f61e6e8a7c6955abc5d3141 (patch) | |
tree | c63eb623ddb31e454dabef738ce6be16410b77cb /keyboards/crkbd/crkbd.c | |
parent | b1e74aee43596e2601248b0a78b2c54c897ce78b (diff) | |
download | qmk_firmware-aa03049015855cdd5f61e6e8a7c6955abc5d3141.tar.gz |
Fix up screen off timer of crkbd (#4346)
* fix about screen off timer
* Fix Up ScreenOffInterval exceeded uint16_t
* Fix Up never waking up once screen off if in case of matrix are not dirty.
* Revert "fix about screen off timer"
This reverts commit 3d175f2340c14250a71af78afec5a1e890d9f4e7.
* Fix up screen off timer of crkbd
* Fix Up ScreenOffInterval exceeded uint16_t
* Fix Up never waking up once screen off if in case of matrix are not dirty.
* Fix up screen off timer of helix
* Fix Up ScreenOffInterval exceeded uint16_t
* Fix Up never waking up once screen off if in case of matrix are not dirty
* Revert "Fix up screen off timer of helix"
This reverts commit f0efb82443a7dc34b75579359b0514e8bfa51100.
* Improve internal processing of process_record_kb()
* Use the return value of process_record_gfx()
* Fix a indent
Fix a indent
Diffstat (limited to 'keyboards/crkbd/crkbd.c')
-rw-r--r-- | keyboards/crkbd/crkbd.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/keyboards/crkbd/crkbd.c b/keyboards/crkbd/crkbd.c index 5e8ba8bac..32f7af776 100644 --- a/keyboards/crkbd/crkbd.c +++ b/keyboards/crkbd/crkbd.c @@ -1 +1,6 @@ #include "crkbd.h" +#include "ssd1306.h" + +bool process_record_kb(uint16_t keycode, keyrecord_t *record) { + return process_record_gfx(keycode,record) && process_record_user(keycode, record); +}
\ No newline at end of file |