Merge pull request #15 from rreilink/master

Support for ATF22LV10. Fixes issue 11
This commit is contained in:
ole00 2022-03-26 21:48:13 +00:00 committed by GitHub
commit b20500912a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 {