diff options
author | 2016-10-30 10:27:06 -0500 | |
---|---|---|
committer | 2016-11-19 09:59:00 -0500 | |
commit | 0b774e9e9850ca483afaf89c09ee2e5841050fa7 (patch) | |
tree | 912b250835e40553280d37203b9b214fbec0a138 /src/lib.rs | |
parent | 9d97ed3e739dba4c9bff0a4733035a355a91b896 (diff) | |
download | cortex-m-0b774e9e9850ca483afaf89c09ee2e5841050fa7.tar.gz cortex-m-0b774e9e9850ca483afaf89c09ee2e5841050fa7.tar.zst cortex-m-0b774e9e9850ca483afaf89c09ee2e5841050fa7.zip |
add a mutex based on critical sections
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -12,6 +12,7 @@ #![deny(missing_docs)] #![deny(warnings)] #![feature(asm)] +#![feature(const_fn)] #![no_std] extern crate volatile_register; |