mirror of
https://github.com/ole00/afterburner.git
synced 2024-11-22 06:32:01 +00:00
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:
parent
1a79e61479
commit
b4faefc042
@ -1014,9 +1014,9 @@ static void readOrVerifyGal(char verify)
|
|||||||
case ATF16V8B:
|
case ATF16V8B:
|
||||||
//read without delay, no discard
|
//read without delay, no discard
|
||||||
if (verify) {
|
if (verify) {
|
||||||
i = verifyGalFuseMap(cfgV8, 0, 0);
|
i = verifyGalFuseMap(cfgV8AB, 0, 0);
|
||||||
} else {
|
} else {
|
||||||
readGalFuseMap(cfgV8, 0, 0);
|
readGalFuseMap(cfgV8AB, 0, 0);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -1157,7 +1157,7 @@ static void writeGal()
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case ATF16V8B:
|
case ATF16V8B:
|
||||||
writeGalFuseMapV8(cfgV8);
|
writeGalFuseMapV8(cfgV8AB);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case GAL22V10:
|
case GAL22V10:
|
||||||
|
Loading…
Reference in New Issue
Block a user