Browse Source

Fix Bootmagic_lite function

pull/4270/head
Drashna Jaelre 5 years ago
committed by MechMerlin
parent
commit
214241853a
1 changed files with 0 additions and 16 deletions
  1. +0
    -16
      users/drashna/drashna.c

+ 0
- 16
users/drashna/drashna.c View File

@ -423,19 +423,3 @@ void eeconfig_init_user(void) {
userspace_config.rgb_layer_change = true;
eeconfig_update_user(userspace_config.raw);
}
void bootmagic_lite(void) {
matrix_scan();
#if defined(DEBOUNCING_DELAY) && DEBOUNCING_DELAY > 0
wait_ms(DEBOUNCING_DELAY * 2);
#elif defined(DEBOUNCE) && DEBOUNCE > 0
wait_ms(DEBOUNCE * 2);
#else
wait_ms(30);
#endif
matrix_scan();
if (matrix_get_row(BOOTMAGIC_LITE_ROW) & (1 << BOOTMAGIC_LITE_COLUMN)) {
bootloader_jump();
}
}

Loading…
Cancel
Save