wip
This commit is contained in:
@ -6,12 +6,10 @@ description = "Keyboard firmware"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
tgnt = { git = "https://git.nubo.sh/hulthe/tgnt.git", default-features = false }
|
||||
#tgnt = { git = "https://git.nubo.sh/hulthe/tgnt.git", default-features = false }
|
||||
cortex-m = "0.7.6"
|
||||
cortex-m-rt = "0.7"
|
||||
embedded-hal = "0.2.5"
|
||||
usb-device = "0.2.9"
|
||||
usbd-hid = "0.6.1"
|
||||
static_cell = "1.0.0"
|
||||
embedded-io-async = "*"
|
||||
futures = { version = "0.3", default-features = false, features = ["async-await"] }
|
||||
@ -19,9 +17,6 @@ embassy-executor = { version = "0.5.0", features = ["nightly", "nightly", "execu
|
||||
embassy-sync = "0.5.0"
|
||||
embassy-time = "0.3.0"
|
||||
embassy-futures = "0.1.1"
|
||||
embassy-usb = { version = "0.1.0", features = ["usbd-hid"] }
|
||||
embassy-usb-logger = "0.1.0"
|
||||
embassy-usb-driver = "0.1.0"
|
||||
log = "0.4.17"
|
||||
pio = "0.2.1"
|
||||
pio-proc = "0.2.1"
|
||||
@ -32,13 +27,15 @@ fixed = "1.23.1"
|
||||
rtt-target = "0.4.0"
|
||||
heapless = "0.7.16"
|
||||
once_cell = { version = "1.17.1", default-features = false }
|
||||
atomic-polyfill = "1.0.2"
|
||||
critical-section = "1.1.1"
|
||||
crc-any = "2.4.3"
|
||||
serde = { version = "1.0.163", default-features = false, features = ["derive"] }
|
||||
bytemuck = { version = "1.13.1", features = ["derive"] }
|
||||
libm = "0.2.8"
|
||||
glam = { version = "0.25.0", default-features = false, features = ["libm"] }
|
||||
msgpck = { version = "0.2.8", features = ["alloc"] }
|
||||
#atomic-polyfill = "1.0.2"
|
||||
portable-atomic = { version = "1.6.0", default-features = false }
|
||||
|
||||
[target.'cfg(target_arch = "x86_64")'.dependencies]
|
||||
embassy-executor = { version = "0.5.0", features = ["arch-std"] }
|
||||
@ -48,12 +45,18 @@ simple_logger = "4"
|
||||
[target.thumbv6m-none-eabi.dependencies]
|
||||
embassy-rp = { version = "0.1.0", features = ["time-driver", "critical-section-impl"] }
|
||||
embassy-executor = { version = "0.5.0", features = ["arch-cortex-m"] }
|
||||
embassy-usb = { version = "0.1.0", features = ["usbd-hid"] }
|
||||
embassy-usb-logger = "0.1.0"
|
||||
embassy-usb-driver = "0.1.0"
|
||||
usb-device = "0.2.9"
|
||||
usbd-hid = "0.6.1"
|
||||
|
||||
[build-dependencies]
|
||||
tgnt = { git = "https://git.nubo.sh/hulthe/tgnt.git", default-features = false }
|
||||
#tgnt = { git = "https://git.nubo.sh/hulthe/tgnt.git", default-features = false }
|
||||
ron = "0.8.0"
|
||||
postcard = { version = "1", features = ["use-std"] }
|
||||
|
||||
[features]
|
||||
std = []
|
||||
default = ["n-key-rollover"]
|
||||
n-key-rollover=[]
|
||||
|
||||
Reference in New Issue
Block a user