Seeeduino Xiao Zephyr Problem

Since PlatformIO declares

the used Zephyr version is seeduino_xiao, which declares as its serial and console output device as

which is a hardware UART at 115200 baud, not USB, on the pins

PB9 and PB8, which, per schematic is the pin labeled “A7” (RX) and “A8” (TX).

So, if you connect a USB UART adapter to thoses pins (and GND) and open the serial monitor at 115200 baud (monitor_speed = 115200 in the platformio.ini), you should see that output.

For console over the USB-CDC serial, see zephyr/samples/subsys/usb/console at main · zephyrproject-rtos/zephyr · GitHub.

1 Like