This commit is contained in:
Paul Zinselmeyer 2025-08-29 21:44:27 +02:00
commit 79fd6c5af4
Signed by: pfzetto
SSH key fingerprint: SHA256:BOdea0+zY02mYo29j2zzK6uVpcc3Gkp4w6C7YrHbN8A
21 changed files with 4107 additions and 0 deletions

17
canopen/Cargo.toml Normal file
View file

@ -0,0 +1,17 @@
[package]
name = "canopen"
version = "0.1.0"
edition = "2024"
[dependencies]
embedded-can = "0.4"
ux = "0.1"
heapless = "0.8"
derive_more = { version = "2", default-features = false, features = ["from"]}
num_enum = { version = "0.7", default-features = false }
[dev-dependencies]
async-channel = "2.5"
async-io = "2.5"
smol = "2.0"
futures = { version = "0.3" }