summaryrefslogtreecommitdiffstats
path: root/keyboards/handwired/practice60/practice60.c
diff options
context:
space:
mode:
authorAndrew Kannan <andrew.kannan@klaviyo.com>2019-01-30 05:04:20 +0100
committerDrashna Jaelre <drashna@live.com>2019-01-30 05:04:20 +0100
commit7186d1581abbd97d7c76626ae83fc866e85d217c (patch)
tree1a6cf65f38f00f48e1539a8c01418cf770119a37 /keyboards/handwired/practice60/practice60.c
parent74fcfd533508d5743a20a7cd7faba404f8fc7cd3 (diff)
downloadqmk_firmware-7186d1581abbd97d7c76626ae83fc866e85d217c.tar.gz
qmk_firmware-7186d1581abbd97d7c76626ae83fc866e85d217c.tar.xz
Moving cannonkeys boards to one place, eeprom fix (#4999)
* Move boards to cannonkeys and share resources * Share common files between cannonkey boards * Fix ortho60 keymap * update LED numbers * Add RGB keys to Ortho60 and Ortho48 * Add Backlight control to default layout Ortho60 and 48 * Remove unnecessary ws2812.c SRC from rules.mk
Diffstat (limited to 'keyboards/handwired/practice60/practice60.c')
-rw-r--r--keyboards/handwired/practice60/practice60.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/keyboards/handwired/practice60/practice60.c b/keyboards/handwired/practice60/practice60.c
deleted file mode 100644
index acc0f00e5..000000000
--- a/keyboards/handwired/practice60/practice60.c
+++ /dev/null
@@ -1,35 +0,0 @@
-
-#include "practice60.h"
-
-#include "ch.h"
-#include "hal.h"
-#include "led_custom.h"
-#include "print.h"
-#include "debug.h"
-#include "util.h"
-
-/* generic STM32F103C8T6 board */
-#ifdef BOARD_GENERIC_STM32_F103
-#define LED_ON() do { palClearPad(GPIOC, 13) ;} while (0)
-#define LED_OFF() do { palSetPad(GPIOC, 13); } while (0)
-#define LED_TGL() do { palTogglePad(GPIOC, 13); } while (0)
-#endif
-
-void matrix_init_kb(void){
- /* MOSI pin*/
- palSetPadMode(GPIOB, 15, PAL_MODE_STM32_ALTERNATE_PUSHPULL);
- LED_ON();
- wait_ms(500);
- LED_OFF();
-
-#ifdef RGBLIGHT_ENABLE
- leds_init();
-#endif
-}
-
-void matrix_scan_kb(void)
-{
- #ifdef RGBLIGHT_ENABLE
- rgblight_task();
- #endif
-}