ATF16V8B was used cfgV8AB in some places, cfgV8 in others.

The chip would read, and write without error, but wouldn't work.
Changing all instances of cfgV8 to cfgV8AB in ATF16V8B
specific code seemed to get the programmed chip to work.
This commit is contained in:
mecparts 2020-05-25 00:34:24 -06:00
parent 1a79e61479
commit b4faefc042
1 changed files with 3 additions and 3 deletions

View File

@ -1014,9 +1014,9 @@ static void readOrVerifyGal(char verify)
case ATF16V8B:
//read without delay, no discard
if (verify) {
i = verifyGalFuseMap(cfgV8, 0, 0);
i = verifyGalFuseMap(cfgV8AB, 0, 0);
} else {
readGalFuseMap(cfgV8, 0, 0);
readGalFuseMap(cfgV8AB, 0, 0);
}
break;
@ -1157,7 +1157,7 @@ static void writeGal()
break;
case ATF16V8B:
writeGalFuseMapV8(cfgV8);
writeGalFuseMapV8(cfgV8AB);
break;
case GAL22V10: