diff options
author | Joel Challis <git@zvecr.com> | 2021-07-27 23:57:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-27 23:57:42 +0100 |
commit | 7ac7ca96e960e23ae88dcb3ec2ac3145ebad5a68 (patch) | |
tree | 3e38828d66270581b0ffa43a0a3666872c01c4f1 /keyboards/cannonkeys/bluepill/keyboard.c | |
parent | 3858a784c702d75d207e62c6cdf4449eed41c789 (diff) |
Remove some legacy files (#13715)
Diffstat (limited to 'keyboards/cannonkeys/bluepill/keyboard.c')
-rw-r--r-- | keyboards/cannonkeys/bluepill/keyboard.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/keyboards/cannonkeys/bluepill/keyboard.c b/keyboards/cannonkeys/bluepill/keyboard.c deleted file mode 100644 index 6a8edd4a93..0000000000 --- a/keyboards/cannonkeys/bluepill/keyboard.c +++ /dev/null @@ -1,20 +0,0 @@ -#include <ch.h> -#include <hal.h> -#include "util.h" -#include "quantum.h" - -#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){ - LED_ON(); - wait_ms(500); - LED_OFF(); -} |