We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5d53a9 commit cfc1ee0Copy full SHA for cfc1ee0
2 files changed
cortex-m-rt/CHANGELOG.md
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
10
- Mark `pre_init` as deprecated
11
- Add `set_msplim` feature to conditionally set the MSPLIM register at device
12
reset ([#580]).
13
+- Add `skip-data-init` feature to optionally skip copying the `.data` section.
14
15
## [v0.7.5]
16
cortex-m-rt/src/lib.rs
@@ -513,6 +513,11 @@
513
#![deny(missing_docs)]
514
#![no_std]
515
516
+#[cfg(all(feature = "skip-data-init", feature = "zero-init-ram"))]
517
+compile_error!(
518
+ "features `skip-data-init` and `zero-init-ram` cannot be enabled at the same time"
519
+);
520
+
521
extern crate cortex_m_rt_macros as macros;
522
523
/// The 32-bit value the stack is painted with before the program runs.
0 commit comments