From 4ae8ffa640c514299462396dbda543ba5c160b02 Mon Sep 17 00:00:00 2001 From: Brad Bondurant Date: Thu, 10 Nov 2022 09:20:16 -0500 Subject: [PATCH] add libcortex_r5 crate --- libcortex_r5/Cargo.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 libcortex_r5/Cargo.toml diff --git a/libcortex_r5/Cargo.toml b/libcortex_r5/Cargo.toml new file mode 100644 index 0000000..ee6fc70 --- /dev/null +++ b/libcortex_r5/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "libcortex_r5" +version = "0.0.0" +authors = ["M-Labs"] +edition = "2018" + +[features] +power_saving = [] +default = [] + +[dependencies] +bit_field = "0.10" +volatile-register = "0.2" +libregister = { path = "../libregister" } +libcortex_a9 = { path = "../libcortex_a9" }