A collection of various little projects for a Raspberry Pi Pico (rp2040 uC) written in Rust.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
MEMORY { |
|
BOOT2 : ORIGIN = 0x10000000, LENGTH = 0x100 |
|
FLASH : ORIGIN = 0x10000100, LENGTH = 2048K - 0x100 |
|
RAM : ORIGIN = 0x20000000, LENGTH = 256K |
|
} |
|
|
|
SECTIONS { |
|
/* ### Boot loader */ |
|
.boot2 ORIGIN(BOOT2) : |
|
{ |
|
KEEP(*(.boot2)); |
|
} > BOOT2 |
|
} INSERT BEFORE .text; |