:orphan: .. title:: CONFIG_PINMUX_STM32_DEVICE_INITIALIZATION_PRIORITY .. kconfig:: CONFIG_PINMUX_STM32_DEVICE_INITIALIZATION_PRIORITY CONFIG_PINMUX_STM32_DEVICE_INITIALIZATION_PRIORITY ################################################## *Device initialization priority STM32 pinmux* Type: ``int`` Help ==== .. code-block:: none This option controls the priority of pinmux device initialization. Higher priority ensures that the device is initialized earlier in the startup cycle. Note that the pinmux device needs to be initialized after clock control device, but possibly before all other devices. If unsure, leave at default value 2 Direct dependencies =================== \ :kconfig:`PINMUX_STM32 ` && \ :kconfig:`PINMUX ` *(Includes any dependencies from ifs and menus.)* Default ======= - 2 Kconfig definition ================== At ``/pinmux/Kconfig.stm32:12`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:48`` → ``/pinmux/Kconfig:53`` Menu path: (Top) → Device Drivers → Enable board pinmux driver → Pinmux driver for STM32 MCUs .. code-block:: kconfig config PINMUX_STM32_DEVICE_INITIALIZATION_PRIORITY int "Device initialization priority STM32 pinmux" default 2 depends on PINMUX_STM32 && PINMUX help This option controls the priority of pinmux device initialization. Higher priority ensures that the device is initialized earlier in the startup cycle. Note that the pinmux device needs to be initialized after clock control device, but possibly before all other devices. If unsure, leave at default value 2 *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*