rp2040

RP2040 Programming without SDK
Log | Files | Refs

commit ce97d85ebba8ab8ba9414d4624ed8221e5e0fe0f
parent aef2583b241f2a369a3ff5cb405341d9be4cf20a
Author: Matsuda Kenji <info@mtkn.jp>
Date:   Sat,  4 Mar 2023 16:46:48 +0900

delete KEEP keyword

Diffstat:
Mmemmap.ld | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/memmap.ld b/memmap.ld @@ -14,12 +14,12 @@ SECTIONS KEEP(*(.boot2)) __boot2_end__ = .; } > FLASH - ASSERT(__boot2_end__ - __boot2_start__ == 256, "ERROR: Pico second stage bootloader must be 256 bytes in size") + .text : { - KEEP(*(.vectors)) - KEEP(*(.text*)) + *(.vectors) + *(.text) } > FLASH }