Skip to content

Commit

Permalink
[Keyboard] Fix compilation issues for Lime (#15116)
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna authored Nov 11, 2021
1 parent 742d1a8 commit f879fbf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion keyboards/lime/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ bool showedJump = true;
return OLED_ROTATION_270;
}

void oled_task_user(void) {
bool oled_task_user(void) {

/* Keyboard Pet Variables */
current_wpm = get_current_wpm();
Expand All @@ -474,6 +474,7 @@ bool showedJump = true;
} else {
print_logo_narrow();
}
return false;
}

#endif
Expand Down
2 changes: 2 additions & 0 deletions keyboards/lime/keymaps/default/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ JOYSTICK_ENABLE = yes
JOYSTICK_DRIVER = analog
EXTRAKEY_ENABLE = yes
WPM_ENABLE = yes
LTO_ENABLE = yes

SRC += analog.c

0 comments on commit f879fbf

Please sign in to comment.