File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
10
10
- Mark ` pre_init ` as deprecated
11
11
- Add ` set_msplim ` feature to conditionally set the MSPLIM register at device
12
12
reset ([ #580 ] ).
13
+ - Add ` skip-data-init ` feature to optionally skip copying the ` .data ` section.
13
14
14
15
## [ v0.7.5]
15
16
Original file line number Diff line number Diff line change 513
513
#![ deny( missing_docs) ]
514
514
#![ no_std]
515
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
+
516
521
extern crate cortex_m_rt_macros as macros;
517
522
518
523
/// The 32-bit value the stack is painted with before the program runs.
You can’t perform that action at this time.
0 commit comments