Add Pimoroni's Tufty2040 board

This commit is contained in:
Daniel Esteban
2022-08-24 09:28:08 +02:00
committed by Ron Evans
parent 12d63d9642
commit aa13b5d83b
5 changed files with 130 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
{
"inherits": [
"rp2040"
],
"serial-port": ["acm:2e8a:0003"],
"build-tags": ["tufty2040"],
"linkerscript": "targets/tufty2040.ld",
"extra-files": [
"targets/pico-boot-stage2.S"
]
}
+10
View File
@@ -0,0 +1,10 @@
MEMORY
{
/* Reserve exactly 256 bytes at start of flash for second stage bootloader */
BOOT2_TEXT (rx) : ORIGIN = 0x10000000, LENGTH = 256
FLASH_TEXT (rx) : ORIGIN = 0x10000000 + 256, LENGTH = 1020K - 256
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 256k
}
INCLUDE "targets/rp2040.ld"