Debug with CMSIS-DAP

Prior to launching a debug session using a CMSIS-DAP, verify that the requirement are installed on your system.

For Linux users

On Linux, an udev rules is needed to specify to USB device to the system. Please create the following rules:

/etc/udev/rules.d/98-cmsis-dap.rules
# mbed CMSIS-DAP
ATTRS{idVendor}=="0d28", ATTRS{idProduct}=="0204", MODE="664", GROUP="plugdev", \
KERNEL=="hidraw*", ATTRS{idVendor}=="0d28", ATTRS{idProduct}=="0204", MODE="664", GROUP="plugdev"

Then run the following command to reload the udev rules:

$> sudo udevadm control --reload-rules