Fix cannonkeys f103 boards
authorzvecr <git@zvecr.com>
Tue, 24 Dec 2019 00:55:19 +0000 (00:55 +0000)
committerzvecr <git@zvecr.com>
Sun, 26 Jan 2020 23:35:57 +0000 (23:35 +0000)
keyboards/cannonkeys/bluepill/keyboard.c

index 865628e..7eb30ea 100644 (file)
@@ -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){