Skip to content

Commit d0c4ac4

Browse files
committed
[L5] new HAL configuration and default config
Signed-off-by: Francois Ramu <[email protected]>
1 parent 97d8a85 commit d0c4ac4

File tree

2 files changed

+469
-0
lines changed

2 files changed

+469
-0
lines changed

system/STM32L5xx/stm32l5xx_hal_conf.h

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#ifndef __STM32L5xx_HAL_CONF_H
2+
#define __STM32L5xx_HAL_CONF_H
3+
4+
#include "variant.h"
5+
6+
/* STM32L5xx 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 "stm32l5xx_hal_conf_default.h"
14+
#endif
15+
16+
#endif /* __STM32L5xx_HAL_CONF_H */

0 commit comments

Comments
 (0)