:orphan: .. title:: CONSOLE_HANDLER .. option:: 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 =================== \ :option:`UART_CONSOLE ` && \ :option:`SERIAL_SUPPORT_INTERRUPT ` && \ :option:`CONSOLE ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Symbols selected by this symbol =============================== - \ :option:`UART_INTERRUPT_DRIVEN ` Symbols that select this symbol =============================== - \ :option:`CONSOLE_GETCHAR ` - \ :option:`CONSOLE_GETLINE ` Kconfig definition ================== At ``/console/Kconfig:39`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``/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.)*