Console over USB CDC ACM

Browse source code on GitHub

Overview

This example application shows how to use the CDC ACM UART provided by the new experimental USB device stack as a serial backend for the console.

Requirements

This project requires an experimental USB device driver (UDC API).

Building and Running

This sample can be built for multiple boards, in this example we will build it for the reel_board board:

west build -b reel_board samples/subsys/usb/console-next
west flash

Plug the board into a host device, for sample, a PC running Linux OS. The board will be detected as a CDC ACM serial device. To see the console output from the sample, use a command similar to minicom -D /dev/ttyACM1.

Hello World! arm
Hello World! arm
Hello World! arm
Hello World! arm

See also

USB device core API
UART Interface