mirror of
https://github.com/micropython/micropython.git
synced 2026-01-05 19:50:30 +01:00
It looks like the variants for this board were never being built properly,
because the auto-build system used the variant name from `board.json` which
did not match the variant names in the original `mpconfigboard.mk`. Eg
`FLASH_2MB` in `board.json` but `FLASH_2M` in `mpconfigboard.mk`.
This mistake is apparent since 5dff78f38e,
which made it a build error to specify an invalid variant.
Fix this by using the correct variant names in `board.json`.
Signed-off-by: Damien George <damien@micropython.org>
24 lines
480 B
JSON
24 lines
480 B
JSON
{
|
|
"deploy": [
|
|
"deploy.md"
|
|
],
|
|
"docs": "",
|
|
"features": [
|
|
"Dual-core",
|
|
"External Flash",
|
|
"USB-C"
|
|
],
|
|
"images": [
|
|
"weact_rp2040.jpg"
|
|
],
|
|
"mcu": "rp2040",
|
|
"product": "WeAct Studio RP2040",
|
|
"url": "https://github.com/WeActTC/WeActStudio.RP2040CoreBoard",
|
|
"variants": {
|
|
"FLASH_2M": "2 MiB Flash",
|
|
"FLASH_4M": "4 MiB Flash",
|
|
"FLASH_8M": "8 MiB Flash"
|
|
},
|
|
"vendor": "WeAct"
|
|
}
|