File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
//! Implement a [CMSIS-Pack] flash algorithm in Rust
2
- //!
2
+ //!
3
3
//! [CMSIS-Pack]: https://open-cmsis-pack.github.io/Open-CMSIS-Pack-Spec/main/html/flashAlgorithm.html
4
- //!
4
+ //!
5
5
//! # Feature flags
6
- //!
6
+ //!
7
7
//! - `panic-handler` this is enabled by default and includes a simple abort-on-panic
8
8
//! panic handler. Disable this feature flag if you would prefer to use a different
9
9
//! handler.
@@ -85,7 +85,7 @@ macro_rules! algorithm {
85
85
} ) ,+]
86
86
} ) => {
87
87
static mut _IS_INIT: bool = false ;
88
- static mut _ALGO_INSTANCE: MaybeUninit <$type> = MaybeUninit :: uninit( ) ;
88
+ static mut _ALGO_INSTANCE: core :: mem :: MaybeUninit <$type> = core :: mem :: MaybeUninit :: uninit( ) ;
89
89
90
90
#[ no_mangle]
91
91
#[ link_section = ".entry" ]
You can’t perform that action at this time.
0 commit comments