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

Configure Feed

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

at a3ff1f4e4e2aaec4a4c1ec5def91c21d36dc12f7 26 lines 635 B view raw
1MEMORY { 2 BOOT2 : ORIGIN = 0x10000000, LENGTH = 0x100 3 FLASH : ORIGIN = 0x10000100, LENGTH = 128K - 0x100 4 LAUNCHER: ORIGIN = 0x10020000, LENGTH = 128K 5 TICKV: ORIGIN = 0x10040000, LENGTH = 256K 6 SLOTS: ORIGIN = 0x10080000, LENGTH = 16M - 512K 7 RAM : ORIGIN = 0x20000000, LENGTH = 128K 8 PROGRAM_RAM : ORIGIN = 0x20020000, LENGTH = 136K 9} 10 11EXTERN(BOOT2_FIRMWARE) 12 13SECTIONS { 14 /* ### Boot loader */ 15 .boot2 ORIGIN(BOOT2) : 16 { 17 KEEP(*(.boot2)); 18 } > BOOT2 19} INSERT BEFORE .text; 20 21SECTIONS { 22 .launcher ORIGIN(LAUNCHER) : 23 { 24 KEEP(*(.launcher)); 25 } > LAUNCHER 26} INSERT AFTER .text;