...
Code Block |
---|
$ sudo dmesg ... TBD[7356251.975352] usb 3-7.2: new full-speed USB device number 17 using xhci_hcd [7356252.071980] usb 3-7.2: New USB device found, idVendor=0403, idProduct=6001, bcdDevice= 6.00 [7356252.072000] usb 3-7.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [7356252.072007] usb 3-7.2: Product: FT232R USB UART [7356252.072012] usb 3-7.2: Manufacturer: FTDI [7356252.072017] usb 3-7.2: SerialNumber: B002LIR7 [7356252.082000] ftdi_sio 3-7.2:1.0: FTDI USB Serial Device converter detected [7356252.082102] usb 3-7.2: Detected FT232R [7356252.085252] usb 3-7.2: FTDI USB Serial Device converter now attached to ttyUSB0 ... |
Connect to it using a terminal program on your Linux PC:
Code Block |
---|
picocom -b 115200 /dev/ttyACM0ttyUSB0 |
After the application image is programmed to the target board, reset the board and observe the Zephyr banner and shell on the serial console:
Code Block |
---|
TBD*** Booting nRF Connect SDK v2.8.0-e3db2104b81d *** *** Using Zephyr OS v3.7.99-78e3b9740208 *** ... uart:~$ |
3. Using Zephyr Shell
...