From b4faefc0425b044e0bc89380cc9389421fdd87e7 Mon Sep 17 00:00:00 2001 From: mecparts <2958269+mecparts@users.noreply.github.com> Date: Mon, 25 May 2020 00:34:24 -0600 Subject: [PATCH] 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. --- afterburner.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/afterburner.ino b/afterburner.ino index 9b1446a..f7a13a2 100644 --- a/afterburner.ino +++ b/afterburner.ino @@ -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: