Support for ATF22LV10. Fixes issue 11

This commit is contained in:
Rob Reilink 2022-03-26 09:06:51 +01:00
parent 15bbde3906
commit 58795b19ae
1 changed files with 1 additions and 1 deletions

View File

@ -1199,7 +1199,7 @@ static char checkGalTypeViaPes(void)
Serial.println();
#endif
if (pes[7] == 'F' && pes[6]== '2' && pes[5]== '2' && pes[4]== 'V' && pes[3]== '1' && pes[2]=='0') {
if (pes[7] == 'F' && pes[6]== '2' && pes[5]== '2' && (pes[4]== 'V' || pes[4]=='L') && pes[3]== '1' && pes[2]=='0') {
if (pes[1] == 'B') {
type = ATF22V10B;
} else {