STM32H750VB_Bootloader/Core/Inc/pin_config.h

12 lines
196 B
C

#ifndef __PIN_CONFIG_H
#define __PIN_CONFIG_H
#define LED_PORT GPIOA
#define LED_PIN GPIO_PIN_1
#define BTN_PORT GPIOE
#define BTN_PIN GPIO_PIN_3
#define BTN_INACTIVE_STATE GPIO_PIN_SET
#endif