diff options
Diffstat (limited to 'examples/hifive1/Cargo.toml')
| -rw-r--r-- | examples/hifive1/Cargo.toml | 11 |
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 = [] |
