diff options
Diffstat (limited to 'keyboards/handwired/ortho60/ortho60.c')
-rw-r--r-- | keyboards/handwired/ortho60/ortho60.c | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/keyboards/handwired/ortho60/ortho60.c b/keyboards/handwired/ortho60/ortho60.c deleted file mode 100644 index 32db007b6c..0000000000 --- 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(); - - -} |