mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-09-14 16:32:59 +00:00
1d2bc0fd64
Add a tufty2350 target and board file for the Pimoroni Tufty 2350, an RP2350B board with a parallel ST7789 LCD and a CYW43439 wireless chip. The target inherits rp2350b and sets a 16 MB flash size, like the existing pga2350 and pico-plus2 targets. Pin names come from Pimoroni's published pins.csv for the board: https://github.com/pimoroni/tufty2350/blob/main/board/pins.csv
9 lines
169 B
JSON
9 lines
169 B
JSON
{
|
|
"inherits": ["rp2350b"],
|
|
"build-tags": ["tufty2350", "cyw43439"],
|
|
"default-stack-size": 8192,
|
|
"ldflags": [
|
|
"--defsym=__flash_size=16M"
|
|
]
|
|
}
|