Fix names of Logic Green devices

There's some confusion as the datasheet calls the device family
LGT8FX8P but the devices itself are LGT8F88P through LGT8F328P.
Obviously, the "X" is actually a wildcard denoting the flash size.
This commit is contained in:
Joerg Wunsch 2022-01-10 21:29:09 +01:00
parent b1b80bfa4a
commit a3bf6cc4c5
2 changed files with 7 additions and 6 deletions

1
NEWS
View File

@ -15,6 +15,7 @@ Changes since version 6.4:
* New devices supported:
- ATtiny828, ATtiny87, ATtiny167, ATtiny48, ATtiny102, ATtiny104
- LGT8F88P, LGT8F168P, LGT8F328P (fixed names of these parts)
* New programmers supported:

View File

@ -17953,24 +17953,24 @@ part parent ".avrdx"
#------------------------------------------------------------
part parent "m88"
id = "lgt8fx88p";
desc = "LGT8FX88P";
id = "lgt8f88p";
desc = "LGT8F88P";
signature = 0x1e 0x93 0x0f;
ocdrev = 1;
;
part parent "m168"
id = "lgt8fx168p";
desc = "LGT8FX168P";
id = "lgt8f168p";
desc = "LGT8F168P";
signature = 0x1e 0x94 0x0b;
ocdrev = 1;
;
part parent "m328"
id = "lgt8fx328p";
desc = "LGT8FX328P";
id = "lgt8f328p";
desc = "LGT8F328P";
signature = 0x1e 0x95 0x0F;
ocdrev = 1;