diff options
| author | Drashna Jaelre <drashna@live.com> | 2021-11-01 15:42:50 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-02 09:42:50 +1100 |
| commit | 9d235d4fc5c34f372b0c393f41686b5ef4f8dc13 (patch) | |
| tree | c155fae4cd6043c3c32aa185eb05c5d1a4a5700e /keyboards/splitkb/zima/zima.c | |
| parent | f775da96b17ceec66bac279434325b4da5cb9467 (diff) | |
| download | qmk_firmware-9d235d4fc5c34f372b0c393f41686b5ef4f8dc13.tar.gz qmk_firmware-9d235d4fc5c34f372b0c393f41686b5ef4f8dc13.zip | |
[Core] Change OLED task function to be boolean (#14864)
* [Core] Add kb level callbacks to OLED driver
* Update keyboards and keymaps
* Update docs
* Update userspace configs
* Add fix for my keymap ...
* update lefty
Diffstat (limited to 'keyboards/splitkb/zima/zima.c')
| -rw-r--r-- | keyboards/splitkb/zima/zima.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/keyboards/splitkb/zima/zima.c b/keyboards/splitkb/zima/zima.c index 6570f3449..f39e3a39e 100644 --- a/keyboards/splitkb/zima/zima.c +++ b/keyboards/splitkb/zima/zima.c | |||
| @@ -35,12 +35,17 @@ void suspend_wakeup_init_kb(void) { | |||
| 35 | suspend_wakeup_init_user(); | 35 | suspend_wakeup_init_user(); |
| 36 | } | 36 | } |
| 37 | 37 | ||
| 38 | __attribute__((weak)) oled_rotation_t oled_init_user(oled_rotation_t rotation) { return OLED_ROTATION_180; } | 38 | oled_rotation_t oled_init_kb(oled_rotation_t rotation) { |
| 39 | return OLED_ROTATION_180; | ||
| 40 | } | ||
| 39 | 41 | ||
| 40 | __attribute__((weak)) void oled_task_user(void) { | 42 | bool oled_task_kb(void) { |
| 43 | if (!oled_task_user()) { | ||
| 44 | return false; | ||
| 45 | } | ||
| 41 | if (is_asleep) { | 46 | if (is_asleep) { |
| 42 | oled_off(); | 47 | oled_off(); |
| 43 | return; | 48 | return false; |
| 44 | } | 49 | } |
| 45 | 50 | ||
| 46 | if (timer_elapsed32(oled_timer) < 30000) { | 51 | if (timer_elapsed32(oled_timer) < 30000) { |
| @@ -83,6 +88,7 @@ __attribute__((weak)) void oled_task_user(void) { | |||
| 83 | oled_off(); | 88 | oled_off(); |
| 84 | } | 89 | } |
| 85 | } | 90 | } |
| 91 | return false; | ||
| 86 | } | 92 | } |
| 87 | 93 | ||
| 88 | bool process_record_kb(uint16_t keycode, keyrecord_t* record) { | 94 | bool process_record_kb(uint16_t keycode, keyrecord_t* record) { |
