diff options
author | 2021-11-27 12:43:40 +0000 | |
---|---|---|
committer | 2021-11-27 12:43:40 +0000 | |
commit | ae1d2a62d895dc458784c465e021a010cb75a8b1 (patch) | |
tree | 97fc7bc0b18b1051d48faa93c153de25a6b29f56 /src/lib.rs | |
parent | 4b536898ca8da6d20bd54d91fd7938aae0c538bf (diff) | |
parent | c1d434a7e7ee1a04ce06c3e3bcdb9b65e048b8ba (diff) | |
download | cortex-m-ae1d2a62d895dc458784c465e021a010cb75a8b1.tar.gz cortex-m-ae1d2a62d895dc458784c465e021a010cb75a8b1.tar.zst cortex-m-ae1d2a62d895dc458784c465e021a010cb75a8b1.zip |
Merge #342
342: Implement various interfaces for trace configuration r=adamgreig a=tmplt
I'm working on tracing support and aim to implement functions that abstract the configuration of relevant peripherals. Of chief interest is `DWT`, `ITM` and `TPIU`. Some propored abstractions will go against what is established in the crate; I will ask for comments on these.
Co-authored-by: Viktor Sonesten <v@tmplt.dev>
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -52,7 +52,7 @@ //! //! # Minimum Supported Rust Version (MSRV) //! -//! This crate is guaranteed to compile on stable Rust 1.38 and up. It *might* +//! This crate is guaranteed to compile on stable Rust 1.40 and up. It *might* //! compile with older versions but that may change in any new patch release. #![cfg_attr(feature = "inline-asm", feature(asm))] |