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 = 256K - 0x100 4 RESERVED: ORIGIN = 0x10040000, LENGTH = 256K 5 PROGRAM_SLOT_1: ORIGIN = 0x10080000, LENGTH = 512K 6 RAM : ORIGIN = 0x20000000, LENGTH = 128K 7 PROGRAM_RAM : ORIGIN = 0x20020000, LENGTH = 136K 8} 9 10EXTERN(BOOT2_FIRMWARE) 11 12SECTIONS { 13 /* ### Boot loader */ 14 .boot2 ORIGIN(BOOT2) : 15 { 16 KEEP(*(.boot2)); 17 } > BOOT2 18} INSERT BEFORE .text; 19 20SECTIONS { 21 .prog1 ORIGIN(PROGRAM_SLOT_1) : { 22 KEEP(*(.prog1)); 23 } > PROGRAM_SLOT_1 24} INSERT AFTER .text;