From 74d86832c3ff5107daa015bdb7709af6256a462c Mon Sep 17 00:00:00 2001 From: MechMerlin <30334081+mechmerlin@users.noreply.github.com> Date: Fri, 1 Jun 2018 08:58:30 -0700 Subject: 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 --- keyboards/ca66/ca66.c | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 keyboards/ca66/ca66.c (limited to 'keyboards/ca66/ca66.c') diff --git a/keyboards/ca66/ca66.c b/keyboards/ca66/ca66.c deleted file mode 100644 index 6f24a895f..000000000 --- a/keyboards/ca66/ca66.c +++ /dev/null @@ -1,30 +0,0 @@ -#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(); -} -- cgit v1.2.3