CONFIG_WEBSOCKET_CONSOLE

Enable websocket console service

Type: bool

Help

This option enables console over a websocket link. Currently, it is basically just a redirection of the Zephyr console through websocket. It nicely works along with another console driver (like uart), twist being that it will take over the output only if a successful connection to its HTTP service is done.

Direct dependencies

CONSOLE

(Includes any dependencies from if’s and menus.)

Defaults

No defaults. Implicitly defaults to n.

Symbols selected by this symbol

Kconfig definition

At drivers/console/Kconfig.ws:9

Included via Kconfig:10Kconfig.zephyr:29drivers/Kconfig:16drivers/console/Kconfig:306

Menu path: (top menu) → Device Drivers → Console drivers

menuconfig WEBSOCKET_CONSOLE
    bool
    prompt "Enable websocket console service" if CONSOLE
    select NETWORKING if CONSOLE
    select NET_TCP if CONSOLE
    select HTTP_PARSER if CONSOLE
    select HTTP_SERVER if CONSOLE
    select WEBSOCKET if CONSOLE
    depends on CONSOLE
    help
      This option enables console over a websocket link. Currently,
      it is basically just a redirection of the Zephyr console through
      websocket. It nicely works along with another console driver (like
      uart), twist being that it will take over the output only if a
      successful connection to its HTTP service is done.

(Definitions include propagated dependencies, including from if’s and menus.)