Skip to content

Commit

Permalink
updated esp32c3 dependency to version 0.22.0 (#937)
Browse files Browse the repository at this point in the history
* Update Cargo.toml esp32c3 dependency

* fixed esp32c3 example to build with esp32c3=0.22.0 dependency

* added CHANGELOG.md entry for esp32c3 version update
  • Loading branch information
broke authored May 22, 2024
1 parent 04b655d commit ed7ed50
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
16 changes: 13 additions & 3 deletions examples/esp32c3/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/esp32c3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ esp-backtrace = { version = "0.11.0", features = [
"println",
] }

esp32c3 = {version = "0.21.0", features = ["critical-section"]}
esp32c3 = {version = "0.22.0", features = ["critical-section"]}
esp-println = { version = "0.9.0", features = ["esp32c3", "uart"] }

[features]
Expand Down
1 change: 1 addition & 0 deletions rtic/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!

### Changed

- Updated esp32c3 dependency to v0.22.0
- Use `riscv-slic` from `crates.io`
- Remove unused dependency `rtic-monotonics`

Expand Down
2 changes: 1 addition & 1 deletion rtic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ name = "rtic"

[dependencies]
riscv-slic = { version = "0.1.1", optional = true }
esp32c3 = { version = "0.21.0", optional = true }
esp32c3 = { version = "0.22.0", optional = true }
riscv = { version = "0.11.0", optional = true }
cortex-m = { version = "0.7.0", optional = true }
bare-metal = "1.0.0"
Expand Down

0 comments on commit ed7ed50

Please sign in to comment.