This is an automated email from Gerrit. "Andreas Sandberg <[email protected]>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/6554
-- gerrit commit f58ca095cd1354f85c76c155dfb2aa742ec9b92e Author: Andreas Sandberg <[email protected]> Date: Wed Sep 8 23:14:34 2021 +0100 hla: Increase HLA_MAX_USB_IDS We are already at the limit for the number of VID/PID pairs declared in stlink.cfg and stlink-dap.cfg. Increase the maximum number of pairs from 8 to 16 to make room for a few more devices. Signed-off-by: Andreas Sandberg <[email protected]> Change-Id: Ifad8e7ef67b930edbb5421730f00eb3390812f06 diff --git a/src/jtag/hla/hla_interface.h b/src/jtag/hla/hla_interface.h index a1c95cde1..c882acf48 100644 --- a/src/jtag/hla/hla_interface.h +++ b/src/jtag/hla/hla_interface.h @@ -29,7 +29,7 @@ enum e_hl_transports; /** */ extern const char *hl_transports[]; -#define HLA_MAX_USB_IDS 8 +#define HLA_MAX_USB_IDS 16 struct hl_interface_param_s { /** */ --
