From 7186d1581abbd97d7c76626ae83fc866e85d217c Mon Sep 17 00:00:00 2001 From: Andrew Kannan Date: Tue, 29 Jan 2019 23:04:20 -0500 Subject: 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 --- keyboards/handwired/ortho60/ortho60.c | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 keyboards/handwired/ortho60/ortho60.c (limited to 'keyboards/handwired/ortho60/ortho60.c') diff --git a/keyboards/handwired/ortho60/ortho60.c b/keyboards/handwired/ortho60/ortho60.c deleted file mode 100644 index 32db007b6..000000000 --- a/keyboards/handwired/ortho60/ortho60.c +++ /dev/null @@ -1,32 +0,0 @@ - -#include "ortho60.h" - -#include "ch.h" -#include "hal.h" - -#include "underglow.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(); - palSetPad(GPIOA, 8); - wait_ms(500); - palClearPad(GPIOA, 8); - LED_OFF(); - - leds_init(); - - -} -- cgit v1.2.3-24-g4f1b