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:
parent
b1b80bfa4a
commit
a3bf6cc4c5
1
NEWS
1
NEWS
|
@ -15,6 +15,7 @@ Changes since version 6.4:
|
||||||
* New devices supported:
|
* New devices supported:
|
||||||
|
|
||||||
- ATtiny828, ATtiny87, ATtiny167, ATtiny48, ATtiny102, ATtiny104
|
- ATtiny828, ATtiny87, ATtiny167, ATtiny48, ATtiny102, ATtiny104
|
||||||
|
- LGT8F88P, LGT8F168P, LGT8F328P (fixed names of these parts)
|
||||||
|
|
||||||
* New programmers supported:
|
* New programmers supported:
|
||||||
|
|
||||||
|
|
|
@ -17953,24 +17953,24 @@ part parent ".avrdx"
|
||||||
#------------------------------------------------------------
|
#------------------------------------------------------------
|
||||||
|
|
||||||
part parent "m88"
|
part parent "m88"
|
||||||
id = "lgt8fx88p";
|
id = "lgt8f88p";
|
||||||
desc = "LGT8FX88P";
|
desc = "LGT8F88P";
|
||||||
signature = 0x1e 0x93 0x0f;
|
signature = 0x1e 0x93 0x0f;
|
||||||
|
|
||||||
ocdrev = 1;
|
ocdrev = 1;
|
||||||
;
|
;
|
||||||
|
|
||||||
part parent "m168"
|
part parent "m168"
|
||||||
id = "lgt8fx168p";
|
id = "lgt8f168p";
|
||||||
desc = "LGT8FX168P";
|
desc = "LGT8F168P";
|
||||||
signature = 0x1e 0x94 0x0b;
|
signature = 0x1e 0x94 0x0b;
|
||||||
|
|
||||||
ocdrev = 1;
|
ocdrev = 1;
|
||||||
;
|
;
|
||||||
|
|
||||||
part parent "m328"
|
part parent "m328"
|
||||||
id = "lgt8fx328p";
|
id = "lgt8f328p";
|
||||||
desc = "LGT8FX328P";
|
desc = "LGT8F328P";
|
||||||
signature = 0x1e 0x95 0x0F;
|
signature = 0x1e 0x95 0x0F;
|
||||||
|
|
||||||
ocdrev = 1;
|
ocdrev = 1;
|
||||||
|
|
Loading…
Reference in New Issue