Lines Matching +full:serial +full:- +full:console
1 .. zephyr:code-sample:: usb-cdc-acm
2 :name: USB CDC-ACM
3 :relevant-api: usbd_api _usb_device_core_api uart_interface
5 Use USB CDC-ACM driver to implement a serial port echo.
12 Received data from the serial port is echoed back to the same port
29 To see the console output of the app, open a serial port emulator and
30 attach it to the USB to TTL Serial cable. Build and flash the project:
32 .. zephyr-app-commands::
33 :zephyr-app: samples/subsys/usb/cdc_acm
44 .. code-block:: console
46 usb 9-1: new full-speed USB device number 112 using uhci_hcd
47 usb 9-1: New USB device found, idVendor=8086, idProduct=f8a1
48 usb 9-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
49 usb 9-1: Product: CDC-ACM
50 usb 9-1: Manufacturer: Intel
51 usb 9-1: SerialNumber: 00.01
52 cdc_acm 9-1:1.0: ttyACM1: USB ACM device
54 The app prints on serial output (UART1), used for the console:
56 .. code-block:: console
60 Open a serial port emulator, for example minicom
63 .. code-block:: console
65 minicom --device /dev/ttyACM1
67 The app should respond on serial output with:
69 .. code-block:: console
76 .. code-block:: console
81 The characters entered in serial port emulator will be echoed back.
93 .. code-block:: none
98 ``/lib/udev/rules.d/77-mm-usb-device-blacklist.rules`` as reference.