diff options
Diffstat (limited to 'keyboards/splitkb/kyria/rev1/rev1.c')
| -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 | ||
