firmware for my Touchscreen E-Paper Input Module for Framework Laptop 16
0

Configure Feed

Select the types of activity you want to include in your feed.

1MEMORY { 2 BOOT2 : ORIGIN = 0x10000000, LENGTH = 0x100 3 FLASH : ORIGIN = 0x10000100, LENGTH = 16384K - 0x100 4 RAM : ORIGIN = 0x20000000, LENGTH = 256K 5} 6 7EXTERN(BOOT2_FIRMWARE) 8 9SECTIONS { 10 /* ### Boot loader */ 11 .boot2 ORIGIN(BOOT2) : 12 { 13 KEEP(*(.boot2)); 14 } > BOOT2 15} INSERT BEFORE .text;