:orphan: .. title:: CLOCK_STM32_HSI_DIVISOR .. option:: CONFIG_CLOCK_STM32_HSI_DIVISOR *HSI Divisor* Type: ``int`` Help ==== HSI Divisor to divide HSI base frequency value allowed values: 1, 2, 4, 8 Direct dependencies =================== (\ :option:`CLOCK_STM32_PLL_SRC_HSI ` || \ :option:`CLOCK_STM32_SYSCLK_SRC_HSI `) && \ :option:`SOC_SERIES_STM32H7X ` && \ :option:`CLOCK_CONTROL_STM32_CUBE ` && \ :option:`CLOCK_CONTROL ` *(Includes any dependencies from ifs and menus.)* Default ======= - 1 Kconfig definition ================== .. highlight:: kconfig At ``drivers/clock_control/Kconfig.stm32h7:10`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:54`` → ``drivers/clock_control/Kconfig:25`` → ``drivers/clock_control/Kconfig.stm32:133`` Menu path: (Top) → Device Drivers → Hardware clock controller support → STM32 Reset & Clock Control .. parsed-literal:: config CLOCK_STM32_HSI_DIVISOR int "HSI Divisor" range 1 8 default 1 depends on (\ :option:`CLOCK_STM32_PLL_SRC_HSI ` || \ :option:`CLOCK_STM32_SYSCLK_SRC_HSI `) && \ :option:`SOC_SERIES_STM32H7X ` && \ :option:`CLOCK_CONTROL_STM32_CUBE ` && \ :option:`CLOCK_CONTROL ` help HSI Divisor to divide HSI base frequency value allowed values: 1, 2, 4, 8 *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*