cable: add Sipeed SLogic Combo 8 support

This commit is contained in:
aisuneko icecat 2026-05-01 23:20:49 +08:00 committed by Gwenhael Goavec-Merou
parent 5b3db15d3b
commit b8036312cd
2 changed files with 12 additions and 4 deletions

View File

@ -57,10 +57,17 @@ ch552_jtag:
cmsisdap: cmsisdap:
- Name: ARM CMSIS DAP protocol interface - Name: ARM CMSIS DAP protocol interface
Description: ARM CMSIS DAP protocol interface (hid only) Description: ARM CMSIS DAP protocol interface
URL: https://os.mbed.com/docs/mbed-os/v6.11/debug-test/daplink.html URL: https://os.mbed.com/docs/mbed-os/v6.11/debug-test/daplink.html
sipeed_slogic_combo8:
- Name: Sipeed SLogic Combo 8
Description: The DAP-Link interface on Sipeed SLogic Combo 8 (usbbulk only)
URL: https://wiki.sipeed.com/hardware/en/logic_analyzer/combo8/index.html
dfu: dfu:
- Name: DFU interface - Name: DFU interface

View File

@ -130,6 +130,7 @@ static std::map <std::string, cable_t> cable_list = {
{"numato-neso", FTDI_SER(0x2a19, 0x1005, FTDI_INTF_B, 0x08, 0x4b, 0x00, 0x00)}, {"numato-neso", FTDI_SER(0x2a19, 0x1005, FTDI_INTF_B, 0x08, 0x4b, 0x00, 0x00)},
{"orbtrace", CMSIS_CL(0x1209, 0x3443 )}, {"orbtrace", CMSIS_CL(0x1209, 0x3443 )},
{"papilio", FTDI_SER(0x0403, 0x6010, FTDI_INTF_A, 0x08, 0x0B, 0x09, 0x0B)}, {"papilio", FTDI_SER(0x0403, 0x6010, FTDI_INTF_A, 0x08, 0x0B, 0x09, 0x0B)},
{"sipeed_slogic_combo8", CMSIS_CL(0xd6e7, 0x3507 )},
{"steppenprobe", FTDI_SER(0x0403, 0x6010, FTDI_INTF_A, 0x58, 0xFB, 0x00, 0x99)}, {"steppenprobe", FTDI_SER(0x0403, 0x6010, FTDI_INTF_A, 0x58, 0xFB, 0x00, 0x99)},
{"tigard", FTDI_SER(0x0403, 0x6010, FTDI_INTF_B, 0x08, 0x3B, 0x00, 0x00)}, {"tigard", FTDI_SER(0x0403, 0x6010, FTDI_INTF_B, 0x08, 0x3B, 0x00, 0x00)},
{"usb-blaster", CABLE_DEF(MODE_USBBLASTER, 0x09Fb, 0x6001 )}, {"usb-blaster", CABLE_DEF(MODE_USBBLASTER, 0x09Fb, 0x6001 )},