firmware for my Touchscreen E-Paper Input Module for Framework Laptop 16
1[package]
2name = "eepy-sys"
3version = "0.1.0"
4edition = "2021"
5
6[dependencies]
7tp370pgh01 = { path = "../tp370pgh01" }
8defmt = { workspace = true, optional = true }
9embedded-graphics = { workspace = true, optional = true }
10serde.workspace = true
11crc32fast.workspace = true
12usb-device.workspace = true
13critical-section = { workspace = true, optional = true }
14once_cell = { workspace = true, optional = true }
15strum.workspace = true
16
17[features]
18defmt = ["dep:defmt", "usb-device/defmt"]
19critical-section-impl = ["critical-section", "critical-section/restore-state-bool", "once_cell"]