aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/cannonkeys
diff options
context:
space:
mode:
authorzvecr <git@zvecr.com>2019-12-24 00:55:19 +0000
committerzvecr <git@zvecr.com>2020-01-26 23:35:57 +0000
commit992656e753263577e70c272ccc068bd619aee43b (patch)
tree328cd247dc75ef636ca2736f65814ef1f485b1d5 /keyboards/cannonkeys
parentee86be9dca3a4f370672562b551cc8af928f0152 (diff)
downloadfirmware-992656e753263577e70c272ccc068bd619aee43b.tar.gz
firmware-992656e753263577e70c272ccc068bd619aee43b.tar.bz2
firmware-992656e753263577e70c272ccc068bd619aee43b.zip
Fix cannonkeys f103 boards
Diffstat (limited to 'keyboards/cannonkeys')
-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 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){