Skip to content

Commit

Permalink
WIP examples/embassy usb_ethernet testing
Browse files Browse the repository at this point in the history
  • Loading branch information
kaspar030 committed Nov 17, 2023
1 parent 309bc66 commit 421848d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/embassy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition.workspace = true
publish = false

[dependencies]
riot-rs = { path = "../../src/riot-rs", features = ["time"] }
riot-rs = { path = "../../src/riot-rs", features = ["time", "usb", "net"] }
riot-rs-boards = { path = "../../src/riot-rs-boards" }
embassy-executor = { workspace = true, default-features = false }
embassy-time = { workspace = true, default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion examples/embassy/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ fn riot_main() {
let spawner = EXECUTOR.spawner();
spawner.spawn(async_task()).unwrap();

for _ in 0..10 {
loop {
let val = blocker::block_on(SIGNAL.wait());
println!(
"now={}ms threadtest() val={}",
Expand Down

0 comments on commit 421848d

Please sign in to comment.