Fix stm32h573i_dk button & led.

This commit is contained in:
HiFiPhile
2024-04-09 23:55:38 +02:00
parent 0d4465a098
commit 3ecabe3ebe
2 changed files with 4 additions and 4 deletions

View File

@@ -35,12 +35,12 @@ extern "C" {
// LED
#define LED_PORT GPIOI
#define LED_PIN GPIO_PIN_9
#define LED_STATE_ON 0
#define LED_STATE_ON 1
// Button
#define BUTTON_PORT GPIOC
#define BUTTON_PIN GPIO_PIN_13
#define BUTTON_STATE_ACTIVE 0
#define BUTTON_STATE_ACTIVE 1
// UART Enable for STLink VCOM
#define UART_DEV USART1