diff options
author | 2019-12-22 17:45:48 +0000 | |
---|---|---|
committer | 2020-04-10 17:46:56 +0100 | |
commit | 9c1a46749c4a2f7b88581a69cd405b712d227343 (patch) | |
tree | 40d9e113e59b90fd40b8e0dd9e0934a3969b2c48 /src/lib.rs | |
parent | 6a0432a038addf78cfe2fc7ab958b171b2134377 (diff) | |
download | cortex-m-9c1a46749c4a2f7b88581a69cd405b712d227343.tar.gz cortex-m-9c1a46749c4a2f7b88581a69cd405b712d227343.tar.zst cortex-m-9c1a46749c4a2f7b88581a69cd405b712d227343.zip |
Update cfg gates with Armv8-M
Update cfg attributes and code documentation to take into consideration
the new Armv8-M architecture profiles.
Signed-off-by: Hugues de Valon <hugues.devalon@arm.com>
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -62,7 +62,7 @@ pub mod asm; #[cfg(armv8m)] pub mod cmse; pub mod interrupt; -#[cfg(not(armv6m))] +#[cfg(all(not(armv6m), not(armv8m_base)))] pub mod itm; pub mod peripheral; pub mod register; |