From a3bf6cc4c5a8a5588f680d748ac34bed9edb8e07 Mon Sep 17 00:00:00 2001 From: Joerg Wunsch Date: Mon, 10 Jan 2022 21:29:09 +0100 Subject: [PATCH] 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. --- NEWS | 1 + src/avrdude.conf.in | 12 ++++++------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/NEWS b/NEWS index 57a0aec8..2b8d25ec 100644 --- a/NEWS +++ b/NEWS @@ -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: diff --git a/src/avrdude.conf.in b/src/avrdude.conf.in index 29107feb..2f6042bb 100644 --- a/src/avrdude.conf.in +++ b/src/avrdude.conf.in @@ -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;