aboutsummaryrefslogtreecommitdiff
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
parentee86be9dca3a4f370672562b551cc8af928f0152 (diff)
downloadqmk_firmware-992656e753263577e70c272ccc068bd619aee43b.tar.gz
qmk_firmware-992656e753263577e70c272ccc068bd619aee43b.zip
Fix cannonkeys f103 boards
-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 @@
4#include "util.h" 4#include "util.h"
5#include "quantum.h" 5#include "quantum.h"
6 6
7#ifdef BOARD_GENERIC_STM32_F103 7#ifdef BOARD_STM32_F103_STM32DUINO
8#define LED_ON() do { palClearPad(GPIOC, 13) ;} while (0) 8#define LED_ON() do { palClearPad(GPIOC, 13) ;} while (0)
9#define LED_OFF() do { palSetPad(GPIOC, 13); } while (0) 9#define LED_OFF() do { palSetPad(GPIOC, 13); } while (0)
10#define LED_TGL() do { palTogglePad(GPIOC, 13); } while (0) 10#define LED_TGL() do { palTogglePad(GPIOC, 13); } while (0)
11#else
12#define LED_ON()
13#define LED_OFF()
14#define LED_TGL()
11#endif 15#endif
12 16
13void matrix_init_kb(void){ 17void matrix_init_kb(void){