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.

fw16-epd-bsp: migrate to rust 2024

+3 -3
+1 -1
fw16-epd-bsp/Cargo.toml
··· 2 2 name = "fw16-epd-bsp" 3 3 version = "0.1.0" 4 4 authors = ["arthomnix"] 5 - edition = "2021" 5 + edition = "2024" 6 6 description = "Board Support Package for arthomnix's touchscreen e-paper input module for the Framework 16" 7 7 license = "MIT" 8 8
+2 -2
fw16-epd-bsp/src/lib.rs
··· 8 8 pub use rp2040_hal::entry; 9 9 10 10 #[cfg(feature = "boot2")] 11 - #[link_section = ".boot2"] 12 - #[no_mangle] 11 + #[unsafe(link_section = ".boot2")] 12 + #[unsafe(no_mangle)] 13 13 #[used] 14 14 pub static BOOT2_FIRMWARE: [u8; 256] = rp2040_boot2::BOOT_LOADER_W25Q080; 15 15