:orphan: .. title:: CONSOLE_HANDLER .. option:: CONFIG_CONSOLE_HANDLER *Enable console input handler* Type: ``bool`` Help ==== 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 ================== .. highlight:: kconfig At ``drivers/console/Kconfig:39`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:14`` Menu path: (Top) → Device Drivers → Console drivers .. parsed-literal:: config CONSOLE_HANDLER bool "Enable console input handler" select \ :option:`UART_INTERRUPT_DRIVEN ` depends on \ :option:`UART_CONSOLE ` && \ :option:`SERIAL_SUPPORT_INTERRUPT ` && \ :option:`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.)*