diff options
author | 2017-03-11 23:21:59 -0500 | |
---|---|---|
committer | 2017-03-11 23:21:59 -0500 | |
commit | 2885f691896dc18722b5e1344770dbcd5a7de235 (patch) | |
tree | 1ec4ef00b3634e23e4b7d62b7fc38f2cd8820d23 /src/peripheral/syst.rs | |
parent | 3f4c581a9cd52c4ad14da2d7008d004a2d888f36 (diff) | |
parent | 173b5bc9750909408cfcd6140ddbf8a119dc7a18 (diff) | |
download | cortex-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.rs | 16 |
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>, -} |