STM32H750VB_Bootloader/Core/Inc/pin_config.h

12 lines
197 B
C

#ifndef __PIN_CONFIG_H
#define __PIN_CONFIG_H
#define LED_PORT GPIOC
#define LED_PIN GPIO_PIN_11
#define BTN_PORT GPIOC
#define BTN_PIN GPIO_PIN_4
#define BTN_INACTIVE_STATE GPIO_PIN_SET
#endif