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 ed6025645f
commit afff175806
2 changed files with 11 additions and 5 deletions

View File

@ -50,9 +50,14 @@ 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
gatemate_pgm: gatemate_pgm:

View File

@ -93,6 +93,7 @@ static std::map <std::string, cable_t> cable_list = {
{"ch552_jtag", FTDI_SER(0x0403, 0x6010, FTDI_INTF_A, 0x08, 0x0B, 0x08, 0x0B)}, {"ch552_jtag", FTDI_SER(0x0403, 0x6010, FTDI_INTF_A, 0x08, 0x0B, 0x08, 0x0B)},
{"ch347_jtag", CABLE_DEF(MODE_CH347, 0x1a86, 0x55dd )}, {"ch347_jtag", CABLE_DEF(MODE_CH347, 0x1a86, 0x55dd )},
{"cmsisdap", CMSIS_CL(0x0d28, 0x0204 )}, {"cmsisdap", CMSIS_CL(0x0d28, 0x0204 )},
{"sipeed_slogic_combo8", CMSIS_CL(0xd6e7, 0x3507 )},
{"gatemate_pgm", FTDI_SER(0x0403, 0x6014, FTDI_INTF_A, 0x10, 0x9B, 0x14, 0x17)}, {"gatemate_pgm", FTDI_SER(0x0403, 0x6014, FTDI_INTF_A, 0x10, 0x9B, 0x14, 0x17)},
{"gatemate_evb_jtag", FTDI_SER(0x0403, 0x6010, FTDI_INTF_A, 0x10, 0x1B, 0x00, 0x01)}, {"gatemate_evb_jtag", FTDI_SER(0x0403, 0x6010, FTDI_INTF_A, 0x10, 0x1B, 0x00, 0x01)},
{"gatemate_evb_spi", FTDI_SER(0x0403, 0x6010, FTDI_INTF_B, 0x00, 0x1B, 0x00, 0x01)}, {"gatemate_evb_spi", FTDI_SER(0x0403, 0x6010, FTDI_INTF_B, 0x00, 0x1B, 0x00, 0x01)},