:orphan: .. title:: CONFIG_CONSOLE_HANDLER .. kconfig:: CONFIG_CONSOLE_HANDLER CONFIG_CONSOLE_HANDLER ###################### *Enable console input handler* Type: ``bool`` Help ==== .. code-block:: none This option enables console input handler allowing to write simple interaction between serial console and the OS. Direct dependencies =================== \ :kconfig:`UART_CONSOLE ` && \ :kconfig:`SERIAL_SUPPORT_INTERRUPT ` && \ :kconfig:`CONSOLE ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Symbols selected by this symbol =============================== - \ :kconfig:`UART_INTERRUPT_DRIVEN ` Symbols that select this symbol =============================== - \ :kconfig:`CONSOLE_GETCHAR ` - \ :kconfig:`CONSOLE_GETLINE ` Kconfig definition ================== At ``/console/Kconfig:27`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:14`` Menu path: (Top) → Device Drivers → Console drivers .. code-block:: kconfig config CONSOLE_HANDLER bool "Enable console input handler" select UART_INTERRUPT_DRIVEN depends on UART_CONSOLE && SERIAL_SUPPORT_INTERRUPT && CONSOLE help This option enables console input handler allowing to write simple interaction between serial console and the OS. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*