File tree 3 files changed +477
-1
lines changed
3 files changed +477
-1
lines changed Original file line number Diff line number Diff line change 96
96
#undef HAL_QSPI_MODULE_ENABLED
97
97
#endif
98
98
99
+ #if !defined(HAL_OSPI_MODULE_DISABLED )
100
+ /*#define HAL_OSPI_MODULE_ENABLED*/
101
+ #else
102
+ #undef HAL_OSPI_MODULE_ENABLED
103
+ #endif
104
+
99
105
/*
100
106
* Disabled HAL modules, handled thanks Arduino menu
101
107
*/
128
134
HAL_HCD_MODULE_ENABLED
129
135
HAL_HRTIM_MODULE_ENABLED
130
136
HAL_HSEM_MODULE_ENABLED
137
+ HAL_ICACHE_MODULE_ENABLED
131
138
HAL_IPCC_MODULE_ENABLED
132
139
HAL_IRDA_MODULE_ENABLED
133
140
HAL_IWDG_MODULE_ENABLED // IWD built-in library uses LL
141
148
HAL_NAND_MODULE_ENABLED
142
149
HAL_NOR_MODULE_ENABLED
143
150
HAL_OPAMP_MODULE_ENABLED
144
- HAL_OSPI_MODULE_ENABLED
151
+ HAL_OTFDEC_MODULE_ENABLED
145
152
HAL_PCCARD_MODULE_ENABLED
146
153
HAL_PKA_MODULE_ENABLED
147
154
HAL_RAMECC_MODULE_ENABLED
Original file line number Diff line number Diff line change
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 */
You can’t perform that action at this time.
0 commit comments