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.

at main 811 B View raw
1[package] 2name = "fw16-epd-bsp" 3version = "0.1.0" 4authors = ["arthomnix"] 5edition = "2024" 6description = "Board Support Package for arthomnix's touchscreen e-paper input module for the Framework 16" 7license = "MIT" 8 9[dependencies] 10cortex-m-rt = { workspace = true, optional = true } 11rp2040-hal.workspace = true 12rp2040-boot2 = { version = "0.3.0", optional = true } 13 14[features] 15default = ["boot2", "rt", "critical-section-impl", "rom-func-cache", "rom-v2-intrinsics"] 16critical-section-impl = ["rp2040-hal/critical-section-impl"] 17boot2 = ["rp2040-boot2"] 18rt = ["cortex-m-rt", "rp2040-hal/rt"] 19rp2040-e5 = ["rp2040-hal/rp2040-e5"] 20rom-func-cache = ["rp2040-hal/rom-func-cache"] 21disable-intrinsics = ["rp2040-hal/disable-intrinsics"] 22rom-v2-intrinsics = ["rp2040-hal/rom-v2-intrinsics"] 23defmt = ["rp2040-hal/defmt"]