summaryrefslogtreecommitdiff
path: root/users/tominabox1
diff options
context:
space:
mode:
Diffstat (limited to 'users/tominabox1')
-rw-r--r--users/tominabox1/rules.mk2
-rw-r--r--users/tominabox1/tominabox1.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/users/tominabox1/rules.mk b/users/tominabox1/rules.mk
index 160dcce7b9..1df5634640 100644
--- a/users/tominabox1/rules.mk
+++ b/users/tominabox1/rules.mk
@@ -5,7 +5,7 @@
CONSOLE_ENABLE = no
TAP_DANCE_ENABLE = yes
NKRO_ENABLE = yes
-BOOTMAGIC_ENABLE = lite # Enable Bootmagic Lite
+BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
ifeq ($(strip $(KEYBOARD)), crkbd/rev1)
RGB_MATRIX_ENABLE = yes
diff --git a/users/tominabox1/tominabox1.c b/users/tominabox1/tominabox1.c
index e48959be9d..7322ead0dc 100644
--- a/users/tominabox1/tominabox1.c
+++ b/users/tominabox1/tominabox1.c
@@ -262,7 +262,7 @@ void render_status_main(void) {
__attribute__ ((weak))
void oled_task_keymap(void) {}
-void oled_task_user(void) {
+bool oled_task_user(void) {
if (timer_elapsed(oled_timer) > 20000) {
oled_off();
@@ -275,6 +275,7 @@ void oled_task_user(void) {
oled_scroll_left();
}
oled_task_keymap();
+ return false;
}
#endif // OLED_Driver