Skip to content

Commit faad585

Browse files
committed
system(H5): add STM32H5xx system source files
Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
1 parent d978849 commit faad585

File tree

3 files changed

+904
-0
lines changed

3 files changed

+904
-0
lines changed

system/STM32H5xx/stm32h5xx_hal_conf.h

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#ifndef __STM32H5xx_HAL_CONF_H
2+
#define __STM32H5xx_HAL_CONF_H
3+
4+
#include "variant.h"
5+
6+
/* STM32H5xx specific HAL configuration options. */
7+
#if __has_include("hal_conf_custom.h")
8+
#include "hal_conf_custom.h"
9+
#else
10+
#if __has_include("hal_conf_extra.h")
11+
#include "hal_conf_extra.h"
12+
#endif
13+
#include "stm32h5xx_hal_conf_default.h"
14+
#endif
15+
16+
#endif /* __STM32H5xx_HAL_CONF_H */

0 commit comments

Comments
 (0)