aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorGravatar bors[bot] <26634292+bors[bot]@users.noreply.github.com> 2021-11-27 12:43:40 +0000
committerGravatar GitHub <noreply@github.com> 2021-11-27 12:43:40 +0000
commitae1d2a62d895dc458784c465e021a010cb75a8b1 (patch)
tree97fc7bc0b18b1051d48faa93c153de25a6b29f56 /src/lib.rs
parent4b536898ca8da6d20bd54d91fd7938aae0c538bf (diff)
parentc1d434a7e7ee1a04ce06c3e3bcdb9b65e048b8ba (diff)
downloadcortex-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.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 6a73692..a267750 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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))]