Trying to setup for Logic Green avr; get Error: This board doesn't support LogicGreen framework!

The complete error -

Resolving LGT8F328P dependencies...
Already up-to-date.
Updating metadata for the vscode IDE...
Error: Processing LGT8F328P (platform: LogicGreen; board: LGT8F328P; framework: LogicGreen)
--------------------------------------------------------------------------------
Verbose mode can be enabled via `-v, --verbose` option
CONFIGURATION: https://docs.platformio.org/page/boards/LogicGreen/LGT8F328P.html
PLATFORM: Logic Green AVR (2.0.0) > LGT8F328P
HARDWARE: ATMEGA328P 32MHz, 2KB RAM, 29KB Flash
PACKAGES: 
 - toolchain-atmelavr @ 1.70300.191015 (7.3.0)
Error: This board doesn't support LogicGreen framework!

my ini file

[env:LGT8F328P]
platform = LogicGreen
board = LGT8F328P
framework = LogicGreen 

The rest of the files are in my repo at
LGT4PlatformIO

I am not sure what the problem is.

Thanks
Michael

Where’d you get this value from? Only frameworks that are in the frameworks array of the board’s JSON file are values here, aka, arduino in this case.

LogicGreen is a custom framework for the Logic Green chips. They are a Chinese version of the Atmel 328P, but just different enough. The LGT8Fx has one more timer and more ports, runs at 32MHz, doesn’t have an EEPROM but fakes it with software, comes in 20, 32, and 48 pin versions, has a one instruction math accelerator, and so on. If you don’t need the EEPROM; you get 2k more space.

Thank you very much for your help, Can’t believe I made that simple of a mistake when just 10 lines down I typed in Logic Green. The fix will have to wait until I get home.

Thanks again