Skip to content

Commit

Permalink
Merge pull request #22 from alkorgh/alkorgh-patch-1
Browse files Browse the repository at this point in the history
Update support.c (Fixing identification for SSC338Q/D chips)
  • Loading branch information
wberube authored Nov 29, 2024
2 parents f6d1c16 + 0a92682 commit 94bc990
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hal/support.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ void hal_identify(void) {
else
strcpy(chip, "SSC33[6/8]");
if (memory > 128)
strcat(chip, "D");
else if (memory > 64)
strcat(chip, "Q");
else if (memory > 64)
strcat(chip, "D");
}
strcpy(family, "infinity6e");
break;
Expand Down

0 comments on commit 94bc990

Please sign in to comment.