Skip to content

Commit

Permalink
enhance: slower default embassy time driver tick
Browse files Browse the repository at this point in the history
  • Loading branch information
andelf committed Apr 30, 2024
1 parent 8d4fa1f commit 3be54a6
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ defmt = { version = "0.3.5", optional = true }
embassy-sync = { version = "0.5.0", optional = true }
embassy-futures = { version = "0.1.1", optional = true }
embassy-time-driver = { version = "0.1.0", features = [
"tick-hz-100_000",
"tick-hz-10_000",
], optional = true }
embassy-time = { version = "0.3.0", features = [
"tick-hz-100_000",
"tick-hz-10_000",
], optional = true }
nb = "1.1.0"
embedded-hal-nb = "1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/ch32v103/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ embassy-executor = { version = "0.5.0", features = [
"arch-riscv32",
"executor-thread",
] }
embassy-time = { version = "0.3.0", features = ["tick-hz-1_000_000"] }
embassy-time = { version = "0.3.0" }

qingke-rt = { version = "0.1.11" }
qingke = { version = "0.1.11" }
Expand Down
2 changes: 1 addition & 1 deletion examples/ch32v203/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ embassy-executor = { version = "0.5.0", features = [
"arch-riscv32",
"executor-thread",
] }
embassy-time = { version = "0.3.0", features = ["tick-hz-1_000_000"] }
embassy-time = { version = "0.3.0" }

qingke-rt = { version = "0.1.11" }
qingke = { version = "0.1.11" }
Expand Down
2 changes: 1 addition & 1 deletion examples/ch32v305/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ embassy-executor = { version = "0.5.0", features = [
"arch-riscv32",
"executor-thread",
] }
embassy-time = { version = "0.3.0", features = ["tick-hz-1_000_000"] }
embassy-time = { version = "0.3.0" }

qingke-rt = { version = "0.1.11" }
qingke = { version = "0.1.11" }
Expand Down
2 changes: 1 addition & 1 deletion examples/ch32v307/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ embassy-executor = { version = "0.5.0", features = [
"arch-riscv32",
"executor-thread",
] }
embassy-time = { version = "0.3.0", features = ["tick-hz-1_000_000"] }
embassy-time = { version = "0.3.0" }
nb = "1.1.0"

qingke-rt = { version = "0.1.11" }
Expand Down
2 changes: 1 addition & 1 deletion examples/ch32x035/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ embassy-executor = { version = "0.5.0", features = [
"arch-riscv32",
"executor-thread",
] }
embassy-time = { version = "0.3.0", features = ["tick-hz-1_000_000"] }
embassy-time = { version = "0.3.0" }

qingke-rt = { version = "0.1.11" }
qingke = { version = "0.1.11" }
Expand Down

0 comments on commit 3be54a6

Please sign in to comment.