Hardware Example

Board Contact

Confirm that your debug probe and USB-to-UART adapter are visible before building firmware.

Board LPCXpresso51U68 EVB OM40005
Status Verified

Run It

Use these commands from the COS workspace when the board and serial adapter are attached.

lsusbpython3 -m serial.tools.list_portsLinkServer probesexport CLEVEROS_SERIAL=<serial-device>

What To Look For

  • CMSIS-DAP debugger is visible to your debug tools.
  • A serial adapter is visible for runtime logs.
  • The board can be programmed and observed from your development environment.
# CleverOS board contact checklist

1. Connect the LPCXpresso51U68 EVB debug USB cable.
2. Connect a USB-to-UART adapter for board serial logs.
3. Confirm the debug probe is visible:

   lsusb
   LinkServer probes

4. Find the serial device name:

   python3 -m serial.tools.list_ports

5. Use that serial device in later examples:

   export CLEVEROS_SERIAL=<serial-device>
   python3 tools/uart_viewer.py --device "$CLEVEROS_SERIAL" --baud 9600