aboutsummaryrefslogtreecommitdiff
path: root/src/peripheral/syst.rs
diff options
context:
space:
mode:
authorGravatar Jorge Aparicio <japaricious@gmail.com> 2017-03-11 23:21:59 -0500
committerGravatar GitHub <noreply@github.com> 2017-03-11 23:21:59 -0500
commit2885f691896dc18722b5e1344770dbcd5a7de235 (patch)
tree1ec4ef00b3634e23e4b7d62b7fc38f2cd8820d23 /src/peripheral/syst.rs
parent3f4c581a9cd52c4ad14da2d7008d004a2d888f36 (diff)
parent173b5bc9750909408cfcd6140ddbf8a119dc7a18 (diff)
downloadcortex-m-2885f691896dc18722b5e1344770dbcd5a7de235.tar.gz
cortex-m-2885f691896dc18722b5e1344770dbcd5a7de235.tar.zst
cortex-m-2885f691896dc18722b5e1344770dbcd5a7de235.zip
Merge pull request #17 from japaric/ng
v0.2.0
Diffstat (limited to 'src/peripheral/syst.rs')
-rw-r--r--src/peripheral/syst.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/peripheral/syst.rs b/src/peripheral/syst.rs
deleted file mode 100644
index 8ee70a1..0000000
--- a/src/peripheral/syst.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-//! SysTick: System Timer
-
-use volatile_register::{RO, RW};
-
-/// Registers
-#[repr(C)]
-pub struct Registers {
- /// Control and Status
- pub csr: RW<u32>,
- /// Reload Value
- pub rvr: RW<u32>,
- /// Current Value
- pub cvr: RW<u32>,
- /// Calibration Value
- pub calib: RO<u32>,
-}