@end example
@end deffn
+@deffn {Config Command} {cmsis_dap_serial} [serial]
+Specifies the @var{serial} of the CMSIS-DAP device to use.
+If not specified, serial numbers are not considered.
+@end deffn
+
@deffn {Command} {cmsis-dap info}
Display various device information, like hardware version, firmware version, current bus status.
@end deffn
/* vid = pid = 0 marks the end of the list */
static uint16_t cmsis_dap_vid[MAX_USB_IDS + 1] = { 0 };
static uint16_t cmsis_dap_pid[MAX_USB_IDS + 1] = { 0 };
+static wchar_t *cmsis_dap_serial;
static bool swd_mode;
#define PACKET_SIZE (64 + 1) /* 64 bytes plus report id */
if (found) {
/* we have found an adapter, so exit further checks */
- break;
+ /* check serial number matches if given */
+ if (cmsis_dap_serial != NULL) {
+ if (wcscmp(cmsis_dap_serial, cur_dev->serial_number) == 0)
+ break;
+ } else
+ break;
}
cur_dev = cur_dev->next;
cmsis_dap_handle = NULL;
}
+ if (cmsis_dap_serial) {
+ free(cmsis_dap_serial);
+ cmsis_dap_serial = NULL;
+ }
+
return;
}
return ERROR_OK;
}
+COMMAND_HANDLER(cmsis_dap_handle_serial_command)
+{
+ if (CMD_ARGC == 1) {
+ size_t len = mbstowcs(NULL, CMD_ARGV[0], 0);
+ cmsis_dap_serial = calloc(len + 1, sizeof(wchar_t));
+ if (cmsis_dap_serial == NULL) {
+ LOG_ERROR("unable to allocate memory");
+ return ERROR_OK;
+ }
+ if (mbstowcs(cmsis_dap_serial, CMD_ARGV[0], len + 1) == (size_t)-1) {
+ free(cmsis_dap_serial);
+ cmsis_dap_serial = NULL;
+ LOG_ERROR("unable to convert serial");
+ }
+ } else {
+ LOG_ERROR("expected exactly one argument to cmsis_dap_serial <serial-number>");
+ }
+
+ return ERROR_OK;
+}
+
static const struct command_registration cmsis_dap_subcommand_handlers[] = {
{
.name = "info",
.help = "the vendor ID and product ID of the CMSIS-DAP device",
.usage = "(vid pid)* ",
},
+ {
+ .name = "cmsis_dap_serial",
+ .handler = &cmsis_dap_handle_serial_command,
+ .mode = COMMAND_CONFIG,
+ .help = "set the serial number of the adapter",
+ .usage = "serial_string",
+ },
COMMAND_REGISTRATION_DONE
};