:orphan: .. title:: CONFIG_SEMIHOST_CONSOLE .. kconfig:: CONFIG_SEMIHOST_CONSOLE CONFIG_SEMIHOST_CONSOLE ####################### *Use semihosting for console* Type: ``bool`` Help ==== .. code-block:: none Enable this option to use semihosting for console. Semihosting is a mechanism that enables code running on an ARM target to communicate and use the Input/Output facilities on a host computer that is running a debugger. Additional information can be found in: https://developer.arm.com/docs/dui0471/k/what-is-semihosting/what-is-semihosting This option is compatible with hardware and with QEMU, through the (automatic) use of the -semihosting-config switch when invoking it. Direct dependencies =================== (\ :kconfig:`CPU_CORTEX_M ` || \ :kconfig:`ARM64 `) && \ :kconfig:`CONSOLE ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Symbols selected by this symbol =============================== - \ :kconfig:`CONSOLE_HAS_DRIVER ` Kconfig definition ================== At ``/console/Kconfig:307`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:14`` Menu path: (Top) → Device Drivers → Console drivers .. code-block:: kconfig config SEMIHOST_CONSOLE bool "Use semihosting for console" select CONSOLE_HAS_DRIVER depends on (CPU_CORTEX_M || ARM64) && CONSOLE help Enable this option to use semihosting for console. Semihosting is a mechanism that enables code running on an ARM target to communicate and use the Input/Output facilities on a host computer that is running a debugger. Additional information can be found in: https://developer.arm.com/docs/dui0471/k/what-is-semihosting/what-is-semihosting This option is compatible with hardware and with QEMU, through the (automatic) use of the -semihosting-config switch when invoking it. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*