summaryrefslogtreecommitdiff
path: root/keyboards/cannonkeys/bluepill/keyboard.c
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2020-01-27 22:39:30 +0000
committerGitHub <noreply@github.com>2020-01-27 22:39:30 +0000
commit7342c335d287bf63c7615c5d752157ef5a790e0c (patch)
treefeff9df3d16754b8a2e687825813b4698e0f60d6 /keyboards/cannonkeys/bluepill/keyboard.c
parent50855593ffcf7b6a780fa5f9c28fe6783264b5e2 (diff)
parent992656e753263577e70c272ccc068bd619aee43b (diff)
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.c6
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){