diff options
author | 2020-01-27 22:39:30 +0000 | |
---|---|---|
committer | 2020-01-27 22:39:30 +0000 | |
commit | 7342c335d287bf63c7615c5d752157ef5a790e0c (patch) | |
tree | feff9df3d16754b8a2e687825813b4698e0f60d6 /keyboards/cannonkeys/bluepill/keyboard.c | |
parent | 50855593ffcf7b6a780fa5f9c28fe6783264b5e2 (diff) | |
parent | 992656e753263577e70c272ccc068bd619aee43b (diff) | |
download | qmk_firmware-7342c335d287bf63c7615c5d752157ef5a790e0c.tar.gz |
Refactor stm32duino f103 keyboards to use new central board config files (#7706)
* Create central board for bluepill
* Remove duplicate board files
* Refactor to use new central board config files
* Fix cannonkeys f103 boards
Diffstat (limited to 'keyboards/cannonkeys/bluepill/keyboard.c')
-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 865628ecc..7eb30ea13 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){ |