[Keyboard] VIA Support for LCK75 (#12402)

This commit is contained in:
jack 2021-04-19 03:22:18 -06:00 committed by GitHub
parent 53a35c0d0c
commit 81be065fa5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 60 additions and 5 deletions

View file

@ -36,10 +36,10 @@ __attribute__((weak)) oled_rotation_t oled_init_user(oled_rotation_t rotation) {
}
__attribute__((weak)) void oled_task_user(void) {
uint32_t anim_timer = 0;
uint32_t anim_sleep = 0;
uint8_t current_idle_frame = 0;
uint8_t current_tap_frame = 0;
static uint32_t anim_timer = 0;
static uint32_t anim_sleep = 0;
static uint8_t current_idle_frame = 0;
static uint8_t current_tap_frame = 0;
static const char PROGMEM idle[IDLE_FRAMES][ANIM_SIZE] = {
@ -140,4 +140,4 @@ uint8_t current_tap_frame = 0;
}
}
#endif
#endif