add interface id in mpsse_bit_config.

This commit is contained in:
Gwenhael Goavec-Merou
2020-03-07 07:19:20 +01:00
parent 78f66a33ec
commit 1ef72b0da6
7 changed files with 26 additions and 26 deletions
+2 -2
View File
@@ -124,9 +124,9 @@ int main(int argc, char **argv)
/* jtag base */
Jtag *jtag;
if (args.device == "-")
jtag = new Jtag(cable, 1, 6000000, false);
jtag = new Jtag(cable, 6000000, false);
else
jtag = new Jtag(cable, args.device, 1, 6000000, false);
jtag = new Jtag(cable, args.device, 6000000, false);
/* chain detection */
vector<int> listDev;