From 87ab96353fd405829b92e5ad5cb0a8b9cbf1cb6d Mon Sep 17 00:00:00 2001 From: Deqing Sun Date: Wed, 8 Aug 2018 16:15:39 -0400 Subject: [PATCH] Add support for cmsis-dap with Keil Software vid Referring to https://github.com/01org/OpenOCD/blob/master/src/jtag/drivers/cmsis_dap_usb.c Line 49 /* Known vid/pid pairs: * VID 0xc251: Keil Software * PID 0xf001: LPC-Link-II CMSIS_DAP * PID 0xf002: OPEN-SDA CMSIS_DAP (Freedom Board) * PID 0x2722: Keil ULINK2 CMSIS-DAP * * VID 0x0d28: mbed Software * PID 0x0204: MBED CMSIS-DAP */ --- misc/debuggerUsbMapping.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/misc/debuggerUsbMapping.json b/misc/debuggerUsbMapping.json index 4db05789..5c3aebad 100644 --- a/misc/debuggerUsbMapping.json +++ b/misc/debuggerUsbMapping.json @@ -69,5 +69,16 @@ "name": "CMSIS-DAP", "short_name": "cmsis-dap", "config_file": "cmsis-dap.cfg" + }, + { + "vid": "c251", + "pid": [ + "f001", + "f002", + "2722" + ], + "name": "CMSIS-DAP", + "short_name": "cmsis-dap", + "config_file": "cmsis-dap.cfg" } -] \ No newline at end of file +]