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 f6676c82689a4e7314b93c8eb98ddd08152fe708 24 lines 797 B view raw
1[package] 2name = "eepy-sys" 3version = "0.1.0" 4edition = "2024" 5authors = ["arthomnix"] 6license = "MIT" 7 8[dependencies] 9eepy-derive = { path = "../eepy-derive" } 10tp370pgh01 = { path = "../tp370pgh01" } 11defmt = { workspace = true, optional = true } 12embedded-graphics = { workspace = true, optional = true } 13serde.workspace = true 14crc32fast.workspace = true 15usb-device.workspace = true 16critical-section = { workspace = true, optional = true } 17once_cell = { workspace = true, optional = true } 18strum.workspace = true 19tickv = { workspace = true, optional = true } 20fugit = { workspace = true, optional = true } 21 22[features] 23defmt = ["dep:defmt", "usb-device/defmt", "fugit/defmt", "embedded-graphics/defmt"] 24critical-section-impl = ["critical-section", "critical-section/restore-state-bool", "once_cell"]