瀏覽代碼

prepare for riscv

Román Cárdenas 1 年之前
父節點
當前提交
51066b53b9

+ 0 - 0
.github/workflows/clippy.yml → riscv-peripheral/.github/workflows/clippy.yml


+ 0 - 0
.github/workflows/rust.yml → riscv-peripheral/.github/workflows/rust.yml


+ 0 - 0
.github/workflows/rustfmt.yml → riscv-peripheral/.github/workflows/rustfmt.yml


+ 0 - 0
.gitignore → riscv-peripheral/.gitignore


+ 2 - 2
Cargo.toml → riscv-peripheral/Cargo.toml

@@ -7,11 +7,11 @@ edition = "2021"
 
 [dependencies]
 embedded-hal = "1.0.0-rc.2"
-embedded-hal-async = { version = "1.0.0-rc.1", optional =  true }
+# embedded-hal-async = { version = "1.0.0-rc.1", optional =  true }
 riscv = { git = "https://github.com/rust-embedded/riscv", branch = "master" }
 
 [features]
-hal-async = ["embedded-hal-async"]
+# hal-async = ["embedded-hal-async"]
 
 [package.metadata.docs.rs]
 default-target = "riscv64imac-unknown-none-elf"

+ 0 - 0
README.md → riscv-peripheral/README.md


+ 0 - 0
examples/e310x.rs → riscv-peripheral/examples/e310x.rs


+ 0 - 0
src/aclint.rs → riscv-peripheral/src/aclint.rs


+ 0 - 0
src/aclint/mswi.rs → riscv-peripheral/src/aclint/mswi.rs


+ 0 - 0
src/aclint/mtimer.rs → riscv-peripheral/src/aclint/mtimer.rs


+ 0 - 0
src/aclint/sswi.rs → riscv-peripheral/src/aclint/sswi.rs


+ 0 - 0
src/common.rs → riscv-peripheral/src/common.rs


+ 0 - 0
src/hal.rs → riscv-peripheral/src/hal.rs


+ 0 - 0
src/hal/aclint.rs → riscv-peripheral/src/hal/aclint.rs


+ 0 - 0
src/hal_async.rs → riscv-peripheral/src/hal_async.rs


+ 0 - 0
src/hal_async/aclint.rs → riscv-peripheral/src/hal_async/aclint.rs


+ 2 - 2
src/lib.rs → riscv-peripheral/src/lib.rs

@@ -7,8 +7,8 @@ pub use riscv; // re-export riscv crate to allow macros to use it
 
 pub mod common; // common definitions for all peripherals
 pub mod hal; // trait implementations for embedded-hal
-#[cfg(feature = "hal-async")]
-pub mod hal_async; // async trait implementations for embedded-hal
+             // #[cfg(feature = "hal-async")]
+             // pub mod hal_async; // async trait implementations for embedded-hal
 pub mod macros; // macros for easing the definition of peripherals in PACs
 
 pub mod aclint; // ACLINT and CLINT peripherals

+ 0 - 0
src/macros.rs → riscv-peripheral/src/macros.rs


+ 0 - 0
src/plic.rs → riscv-peripheral/src/plic.rs


+ 0 - 0
src/plic/claim.rs → riscv-peripheral/src/plic/claim.rs


+ 0 - 0
src/plic/enables.rs → riscv-peripheral/src/plic/enables.rs


+ 0 - 0
src/plic/pendings.rs → riscv-peripheral/src/plic/pendings.rs


+ 0 - 0
src/plic/priorities.rs → riscv-peripheral/src/plic/priorities.rs


+ 0 - 0
src/plic/threshold.rs → riscv-peripheral/src/plic/threshold.rs