:orphan: .. title:: CONFIG_WIFI_INIT_PRIORITY .. kconfig:: CONFIG_WIFI_INIT_PRIORITY CONFIG_WIFI_INIT_PRIORITY ######################### *Wi-Fi driver init priority* Type: ``int`` Help ==== .. code-block:: none Wi-Fi device driver initialization priority. Do not mess with it unless you know what you are doing. Note that the priority needs to be lower than the net stack so that it can start before the networking sub-system. Direct dependencies =================== \ :kconfig:`WIFI ` *(Includes any dependencies from ifs and menus.)* Default ======= - 80 Kconfig definition ================== At ``/wifi/Kconfig:17`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:78`` Menu path: (Top) → Device Drivers → Wi-Fi Drivers .. code-block:: kconfig config WIFI_INIT_PRIORITY int "Wi-Fi driver init priority" default 80 depends on WIFI help Wi-Fi device driver initialization priority. Do not mess with it unless you know what you are doing. Note that the priority needs to be lower than the net stack so that it can start before the networking sub-system. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*