fw-AT-START-F435/board.h

32 lines
563 B
C
Raw Permalink Normal View History

2023-05-23 16:09:19 -07:00
#ifndef _BOARD_H_
#define _BOARD_H_
/**
* @brief The board name
*/
#define BOARD_NAME "AT-EVAL"
2023-05-23 22:06:21 -07:00
#ifndef LED_CRITICAL_ERROR_BRAIN_PIN
#define LED_CRITICAL_ERROR_BRAIN_PIN Gpio::Unassigned
#endif
2023-05-31 17:03:47 -07:00
/*
* Board oscillators-related settings.
* NOTE: LSE not fitted.
*/
#if !defined(STM32_LSECLK)
#define STM32_LSECLK 0U
#endif
#if !defined(STM32_HSECLK)
#define STM32_HSECLK 8000000U
#endif
/*
* Board voltages.
* Required for performance limits calculation.
*/
#define STM32_VDD 300U
2023-05-23 16:09:19 -07:00
#endif /* _BOARD_H_ */