diff options
author | zvecr <git@zvecr.com> | 2019-12-24 00:55:19 +0000 |
---|---|---|
committer | zvecr <git@zvecr.com> | 2020-01-26 23:35:57 +0000 |
commit | 992656e753263577e70c272ccc068bd619aee43b (patch) | |
tree | 328cd247dc75ef636ca2736f65814ef1f485b1d5 /keyboards/cannonkeys | |
parent | ee86be9dca3a4f370672562b551cc8af928f0152 (diff) |
Fix cannonkeys f103 boards
Diffstat (limited to 'keyboards/cannonkeys')
-rw-r--r-- | keyboards/cannonkeys/bluepill/keyboard.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/keyboards/cannonkeys/bluepill/keyboard.c b/keyboards/cannonkeys/bluepill/keyboard.c index 865628eccd..7eb30ea132 100644 --- a/keyboards/cannonkeys/bluepill/keyboard.c +++ b/keyboards/cannonkeys/bluepill/keyboard.c @@ -4,10 +4,14 @@ #include "util.h" #include "quantum.h" -#ifdef BOARD_GENERIC_STM32_F103 +#ifdef BOARD_STM32_F103_STM32DUINO #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) +#else +#define LED_ON() +#define LED_OFF() +#define LED_TGL() #endif void matrix_init_kb(void){ |