aboutsummaryrefslogtreecommitdiff
path: root/examples/hifive1/Cargo.toml
diff options
context:
space:
mode:
authorRomán Cárdenas Rodríguez <rcardenas.rod@gmail.com>2024-10-23 18:50:12 +0200
committerHenrik Tjäder <henrik@tjaders.com>2025-03-12 19:41:40 +0000
commit183e73904a5d14e29f8a7edbb2d9553dddb736af (patch)
tree87735b6518ed1532e9b2cc6c8c145d3243ec3354 /examples/hifive1/Cargo.toml
parentbac77de9bc5249a8d4e34c816bb94f5945fb1f58 (diff)
Prepare for new riscv ecosystem
Diffstat (limited to 'examples/hifive1/Cargo.toml')
-rw-r--r--examples/hifive1/Cargo.toml11
1 files changed, 6 insertions, 5 deletions
diff --git a/examples/hifive1/Cargo.toml b/examples/hifive1/Cargo.toml
index 42d60a7..fcd5729 100644
--- a/examples/hifive1/Cargo.toml
+++ b/examples/hifive1/Cargo.toml
@@ -10,13 +10,14 @@ edition = "2021"
[dependencies]
rtic = { path = "../../rtic" }
-heapless = "0.8.0"
-hifive1 = { git = "https://github.com/romancardenas/hifive1.git", features = ["board-redv"] }
-e310x = { git = "https://github.com/greenlsi/e310x.git", features = ["rt"]}
-riscv-rt = {version = "0.12.1", features = ["single-hart"]}
-riscv = "0.11.0"
+heapless = { version = "0.8.0", features = ["portable-atomic-unsafe-assume-single-core"] }
+hifive1 = { git = "https://github.com/riscv-rust/e310x.git", branch = "ehv1", features = ["board-redv"] }
+riscv-rt = {version = "0.13.0", features = ["single-hart"]}
+riscv = "0.12.1"
semihosting = { version = "0.1", features = ["stdio", "panic-handler"] }
+portable-atomic = { version = "1.9", features = ["unsafe-assume-single-core", "force-amo"] }
[features]
riscv-clint-backend = ["rtic/riscv-clint-backend"]
+riscv-mecall-backend = ["rtic/riscv-mecall-backend"]
test-critical-section = []