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/kyria/rev1 | |
| 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/kyria/rev1')
| -rw-r--r-- | keyboards/splitkb/kyria/rev1/rev1.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/keyboards/splitkb/kyria/rev1/rev1.c b/keyboards/splitkb/kyria/rev1/rev1.c index ac82f7373..b2641fb40 100644 --- a/keyboards/splitkb/kyria/rev1/rev1.c +++ b/keyboards/splitkb/kyria/rev1/rev1.c | |||
| @@ -56,9 +56,14 @@ led_config_t g_led_config = { { | |||
| 56 | #endif | 56 | #endif |
| 57 | 57 | ||
| 58 | #ifdef OLED_ENABLE | 58 | #ifdef OLED_ENABLE |
| 59 | __attribute__((weak)) oled_rotation_t oled_init_user(oled_rotation_t rotation) { return OLED_ROTATION_180; } | 59 | oled_rotation_t oled_init_kb(oled_rotation_t rotation) { |
| 60 | return OLED_ROTATION_180; | ||
| 61 | } | ||
| 60 | 62 | ||
| 61 | __attribute__((weak)) void oled_task_user(void) { | 63 | bool oled_task_kb(void) { |
| 64 | if (!oled_task_user()) { | ||
| 65 | return false; | ||
| 66 | } | ||
| 62 | if (is_keyboard_master()) { | 67 | if (is_keyboard_master()) { |
| 63 | // QMK Logo and version information | 68 | // QMK Logo and version information |
| 64 | // clang-format off | 69 | // clang-format off |
| @@ -119,6 +124,7 @@ __attribute__((weak)) void oled_task_user(void) { | |||
| 119 | // clang-format on | 124 | // clang-format on |
| 120 | oled_write_raw_P(kyria_logo, sizeof(kyria_logo)); | 125 | oled_write_raw_P(kyria_logo, sizeof(kyria_logo)); |
| 121 | } | 126 | } |
| 127 | return false; | ||
| 122 | } | 128 | } |
| 123 | #endif | 129 | #endif |
| 124 | 130 | ||
