diff options
author | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2018-06-01 08:58:30 -0700 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-06-01 08:58:30 -0700 |
commit | 74d86832c3ff5107daa015bdb7709af6256a462c (patch) | |
tree | 682a264ba25c55f96e235979ab3f2b520bc4521d /keyboards/playkbtw/ca66/ca66.c | |
parent | 0aaff74b39554a4278997c13a25d60f9708ecd01 (diff) | |
download | qmk_firmware-74d86832c3ff5107daa015bdb7709af6256a462c.tar.gz |
Put CA66 and PK60 under a playkbtw directory (#3102)
* Add playkbtw directory to put ca66 and pk60 in
* delete old references
* edit readmes for links
Diffstat (limited to 'keyboards/playkbtw/ca66/ca66.c')
-rw-r--r-- | keyboards/playkbtw/ca66/ca66.c | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/keyboards/playkbtw/ca66/ca66.c b/keyboards/playkbtw/ca66/ca66.c new file mode 100644 index 000000000..6f24a895f --- /dev/null +++ b/keyboards/playkbtw/ca66/ca66.c @@ -0,0 +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(); +} |