Merge pull request #788 from kapacuk/blackpill

Change LED_STATE_ON to 0 for stm32f401 and stm32f411 blackpill boards
This commit is contained in:
Ha Thach 2021-04-18 00:11:14 +07:00 committed by GitHub
commit 4ba64719bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@
// LED // LED
#define LED_PORT GPIOC #define LED_PORT GPIOC
#define LED_PIN GPIO_PIN_13 #define LED_PIN GPIO_PIN_13
#define LED_STATE_ON 1 #define LED_STATE_ON 0
// Button // Button
#define BUTTON_PORT GPIOA #define BUTTON_PORT GPIOA

View File

@ -34,7 +34,7 @@
// LED // LED
#define LED_PORT GPIOC #define LED_PORT GPIOC
#define LED_PIN GPIO_PIN_13 #define LED_PIN GPIO_PIN_13
#define LED_STATE_ON 1 #define LED_STATE_ON 0
// Button // Button
#define BUTTON_PORT GPIOA #define BUTTON_PORT GPIOA