File tree Expand file tree Collapse file tree 3 files changed +413
-0
lines changed Expand file tree Collapse file tree 3 files changed +413
-0
lines changed Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ HAL_CAN_LEGACY_MODULE_ENABLED
9898HAL_CAN_LEGACY_MODULE_ENABLED
9999HAL_CEC_MODULE_ENABLED
100100HAL_COMP_MODULE_ENABLED
101+ HAL_CORDIC_MODULE_ENABLED
101102HAL_CRC_MODULE_ENABLED
102103HAL_CRYP_MODULE_ENABLED
103104HAL_DCMI_MODULE_ENABLED
@@ -107,6 +108,7 @@ HAL_DSI_MODULE_ENABLED
107108HAL_EXTI_MODULE_ENABLED // interrupt API does not use the module
108109HAL_FDCAN_MODULE_ENABLED
109110HAL_FIREWALL_MODULE_ENABLED
111+ HAL_FMAC_MODULE_ENABLED
110112HAL_FMPI2C_MODULE_ENABLED
111113HAL_GFXMMU_MODULE_ENABLED
112114HAL_HASH_MODULE_ENABLED
Original file line number Diff line number Diff line change 1+ #ifndef __STM32G4xx_HAL_CONF_H
2+ #define __STM32G4xx_HAL_CONF_H
3+
4+ #include "variant.h"
5+
6+ /* STM32G4xx 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 "stm32g4xx_hal_conf_default.h"
14+ #endif
15+
16+ #endif /* __STM32G4xx_HAL_CONF_H */
You can’t perform that action at this time.
0 commit comments