]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Added bootmagic_lite() (#2942)
authorWilba6582 <Wilba6582@users.noreply.github.com>
Sat, 12 May 2018 15:53:12 +0000 (01:53 +1000)
committerDrashna Jaelre <drashna@live.com>
Sat, 12 May 2018 15:53:12 +0000 (08:53 -0700)
keyboards/ca66/ca66.c

index 91f4826f991fc152d386a68fbca336fe34a48c38..6f24a895f5d36ee60bf196e2ccda7276a1702a21 100644 (file)
@@ -1 +1,30 @@
 #include "ca66.h"
+#include "config.h"
+
+void bootmagic_lite(void)
+{
+       // The lite version of TMK's bootmagic.
+       // 100% less potential for accidentally making the
+       // keyboard do stupid things.
+
+       // We need multiple scans because debouncing can't be turned off.
+       matrix_scan();
+       wait_ms(DEBOUNCING_DELAY);
+       matrix_scan();
+
+       // If the Esc (matrix 0,0) is held down on power up,
+       // reset the EEPROM valid state and jump to bootloader.
+       if ( matrix_get_row(0) & (1<<0) )
+       {
+               // Set the TMK/QMK EEPROM state as invalid.
+               eeconfig_disable();
+               // Jump to bootloader.
+               bootloader_jump();
+       }
+}
+
+void matrix_init_kb(void)
+{
+       bootmagic_lite();
+       matrix_init_user();
+}