diff options
author | 2018-01-15 19:22:20 +0100 | |
---|---|---|
committer | 2018-01-15 19:22:20 +0100 | |
commit | a8962d44d46ef3c16b3e5fb645fead4731cd2b24 (patch) | |
tree | bf76dbf189aec84e4c532ed6ed751693b272124d /src/lib.rs | |
parent | d4de1c2d45e64e1c67c115c573a9a0ed1252cd94 (diff) | |
download | cortex-m-a8962d44d46ef3c16b3e5fb645fead4731cd2b24.tar.gz cortex-m-a8962d44d46ef3c16b3e5fb645fead4731cd2b24.tar.zst cortex-m-a8962d44d46ef3c16b3e5fb645fead4731cd2b24.zip |
fixes and make sure the whole documentation is visible on docs.rs
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -24,6 +24,8 @@ mod macros; pub mod asm; pub mod exception; pub mod interrupt; +// NOTE(target_arch) is for documentation purposes +#[cfg(any(armv7m, target_arch = "x86_64"))] pub mod itm; pub mod peripheral; pub mod register; |