:orphan: .. title:: CONFIG_UART_CONSOLE_INIT_PRIORITY .. kconfig:: CONFIG_UART_CONSOLE_INIT_PRIORITY CONFIG_UART_CONSOLE_INIT_PRIORITY ################################# *Init priority* Type: ``int`` Help ==== .. code-block:: none Device driver initialization priority. Console has to be initialized after the UART driver it uses. Direct dependencies =================== \ :kconfig:`UART_CONSOLE ` && \ :kconfig:`CONSOLE ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - 95 if \ :kconfig:`USB_UART_CONSOLE ` - 60 Kconfig definition ================== At ``/console/Kconfig:42`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:14`` Menu path: (Top) → Device Drivers → Console drivers → Use UART for console .. code-block:: kconfig config UART_CONSOLE_INIT_PRIORITY int "Init priority" default 95 if USB_UART_CONSOLE default 60 depends on UART_CONSOLE && CONSOLE help Device driver initialization priority. Console has to be initialized after the UART driver it uses. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*