summaryrefslogtreecommitdiff
path: root/keyboards/jagdpietr/drakon/drakon.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/jagdpietr/drakon/drakon.c')
-rw-r--r--keyboards/jagdpietr/drakon/drakon.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/keyboards/jagdpietr/drakon/drakon.c b/keyboards/jagdpietr/drakon/drakon.c
index 2aec1f4b50..65d9503055 100644
--- a/keyboards/jagdpietr/drakon/drakon.c
+++ b/keyboards/jagdpietr/drakon/drakon.c
@@ -37,10 +37,8 @@ _FN,
_Lyr2
};
-__attribute__((weak))
-oled_rotation_t oled_init_user(oled_rotation_t rotation) {
- return OLED_ROTATION_90; // flips the display 90 degrees if offhand
-
+oled_rotation_t oled_init_kb(oled_rotation_t rotation) {
+ return OLED_ROTATION_90;
}
static void render_status(void) {
@@ -210,8 +208,11 @@ static void render_anim(void) {
}
}
}
-__attribute__((weak))
-void oled_task_user(void) {
+
+bool oled_task_kb(void) {
+ if (!oled_task_user()) {
+ return false;
+ }
render_anim();
oled_set_cursor(0,6);
@@ -221,6 +222,7 @@ void oled_task_user(void) {
render_status();
+ return false;
}
#endif