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