-
- Downloads
Rework input controller a bit
Showing
- Cargo.lock 1 addition, 0 deletionsCargo.lock
- Cargo.toml 1 addition, 0 deletionsCargo.toml
- src/demo_tasks.rs 20 additions, 11 deletionssrc/demo_tasks.rs
- src/flow3r/badgelink/badgenet.rs 22 additions, 3 deletionssrc/flow3r/badgelink/badgenet.rs
- src/flow3r/display/mod.rs 10 additions, 0 deletionssrc/flow3r/display/mod.rs
- src/flow3r/imu.rs 7 additions, 1 deletionsrc/flow3r/imu.rs
- src/flow3r/input.rs 133 additions, 95 deletionssrc/flow3r/input.rs
- src/main.rs 3 additions, 4 deletionssrc/main.rs
- src/runtime.rs 25 additions, 5 deletionssrc/runtime.rs
... | @@ -20,6 +20,7 @@ embedded-dma = "0.2.0" | ... | @@ -20,6 +20,7 @@ embedded-dma = "0.2.0" |
embedded-graphics = "0.8.0" | embedded-graphics = "0.8.0" | ||
embedded-graphics-framebuf = "0.5.0" | embedded-graphics-framebuf = "0.5.0" | ||
embedded-hal = "0.2.7" | embedded-hal = "0.2.7" | ||
embedded-hal-1 = { package = "embedded-hal", version = "=1.0.0-alpha.10" } | |||
embedded-hal-async = "0.2.0-alpha.1" | embedded-hal-async = "0.2.0-alpha.1" | ||
embedded-hal-bus = "0.1.0-alpha.2" | embedded-hal-bus = "0.1.0-alpha.2" | ||
esp-backtrace = { version = "0.7.0", features = ["esp32s3", "panic-handler", "exception-handler", "print-uart"] } | esp-backtrace = { version = "0.7.0", features = ["esp32s3", "panic-handler", "exception-handler", "print-uart"] } | ||
... | ... |
Please register or sign in to comment