Do not let the hvupdi extended option take any configuration values. The hvupdi type is implied by the part configuration.

This commit is contained in:
Jan Egil Ruud 2022-07-11 15:26:41 +02:00
parent 173b4f9d0a
commit 2478c18745
1 changed files with 1 additions and 1 deletions

View File

@ -1495,7 +1495,7 @@ static int jtag3_parseextparms(PROGRAMMER * pgm, LISTID extparms)
continue;
}
else if (matches(extended_param, "hvupdi")) {
else if (strcmp(extended_param, "hvupdi") == 0) {
PDATA(pgm)->use_hvupdi = true;
continue;
}