Skip to content

Commit 6932838

Browse files
FRASTMcarlescufi
authored andcommitted
drivers: clock control: stm32f4, stm32f7 driver requires LL_RCC
The stm32f4 and stm32f7 serie has to compile the stm32_ll_rcc layer to get the LL_RCC_GetSystemClocksFreq function. Signed-off-by: Francois Ramu <[email protected]>
1 parent a77851b commit 6932838

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

drivers/clock_control/Kconfig.stm32

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ menuconfig CLOCK_CONTROL_STM32_CUBE
88
bool "STM32 Reset & Clock Control"
99
depends on SOC_FAMILY_STM32
1010
select USE_STM32_LL_UTILS
11-
select USE_STM32_LL_RCC if (SOC_SERIES_STM32MP1X || SOC_SERIES_STM32H7X)
11+
select USE_STM32_LL_RCC if (SOC_SERIES_STM32MP1X || SOC_SERIES_STM32H7X || \
12+
SOC_SERIES_STM32F4X || SOC_SERIES_STM32F7X)
1213
help
1314
Enable driver for Reset & Clock Control subsystem found
1415
in STM32 family of MCUs

0 commit comments

Comments
 (0)