diff options
author | 2017-11-21 15:56:16 +0100 | |
---|---|---|
committer | 2017-11-21 15:56:16 +0100 | |
commit | c6ed9ef43f6606f654c2392413ca8ed380a35056 (patch) | |
tree | d0291cc25ae95b99089fca9fb49c5b5826757413 /src/itm.rs | |
parent | 7e05e189c5195303f8693d442b71754f956fc81f (diff) | |
download | cortex-m-c6ed9ef43f6606f654c2392413ca8ed380a35056.tar.gz cortex-m-c6ed9ef43f6606f654c2392413ca8ed380a35056.tar.zst cortex-m-c6ed9ef43f6606f654c2392413ca8ed380a35056.zip |
turn peripherals into scoped singletons
Diffstat (limited to 'src/itm.rs')
-rw-r--r-- | src/itm.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ use core::{fmt, mem, ptr, slice}; use aligned::Aligned; -use peripheral::Stim; +use peripheral::itm::Stim; // NOTE assumes that `bytes` is 32-bit aligned unsafe fn write_words(stim: &Stim, bytes: &[u32]) { |