main: fix bitbang check: config pins must be the shift value
This commit is contained in:
parent
630a976884
commit
f33d30dbce
|
|
@ -467,7 +467,7 @@ int parse_opt(int argc, char **argv, struct arguments *args, jtag_pins_conf_t *p
|
||||||
for (int i = 0; i < 4; i++) {
|
for (int i = 0; i < 4; i++) {
|
||||||
int pin_num;
|
int pin_num;
|
||||||
try {
|
try {
|
||||||
pin_num = std::stoi(pins[i], nullptr, 0);
|
pin_num = 1 << std::stoi(pins[i], nullptr, 0);
|
||||||
} catch (std::exception &e) {
|
} catch (std::exception &e) {
|
||||||
if (pins_list.find(pins[i]) == pins_list.end()) {
|
if (pins_list.find(pins[i]) == pins_list.end()) {
|
||||||
printError("Invalid pin name");
|
printError("Invalid pin name");
|
||||||
|
|
@ -476,7 +476,7 @@ int parse_opt(int argc, char **argv, struct arguments *args, jtag_pins_conf_t *p
|
||||||
pin_num = pins_list[pins[i]];
|
pin_num = pins_list[pins[i]];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pin_num > 7 || pin_num < 0) {
|
if (pin_num > FT232RL_RI || pin_num < FT232RL_TXD) {
|
||||||
printError("Invalid pin ID");
|
printError("Invalid pin ID");
|
||||||
throw std::exception();
|
throw std::exception();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue