aboutsummaryrefslogtreecommitdiff
path: root/users/riblee/riblee.c
diff options
context:
space:
mode:
Diffstat (limited to 'users/riblee/riblee.c')
-rw-r--r--users/riblee/riblee.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/users/riblee/riblee.c b/users/riblee/riblee.c
index 04e37b242..307c69720 100644
--- a/users/riblee/riblee.c
+++ b/users/riblee/riblee.c
@@ -245,10 +245,9 @@ static void render_info(void) {
245 } 245 }
246 246
247 // Print string received via HID RAW 247 // Print string received via HID RAW
248 oled_write_ln(receive_buffer, false); 248 oled_write_ln(receive_buffer, false);}
249}
250 249
251void oled_task_user(void) { 250bool oled_task_user(void) {
252 static bool finished_timer = false; 251 static bool finished_timer = false;
253 if (!finished_timer && (timer_elapsed(startup_timer) < 1000)) { 252 if (!finished_timer && (timer_elapsed(startup_timer) < 1000)) {
254 render_logo(); 253 render_logo();
@@ -259,6 +258,8 @@ void oled_task_user(void) {
259 } 258 }
260 render_info(); 259 render_info();
261 } 260 }
261 return false;
262
262} 263}
263 264
264#ifdef RAW_ENABLE 265#ifdef RAW_ENABLE