diff options
Diffstat (limited to 'examples/mimxrt6/src')
| -rw-r--r-- | examples/mimxrt6/src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/mimxrt6/src/lib.rs b/examples/mimxrt6/src/lib.rs index da6e14427..3c3ea1981 100644 --- a/examples/mimxrt6/src/lib.rs +++ b/examples/mimxrt6/src/lib.rs | |||
| @@ -6,15 +6,15 @@ use {defmt_rtt as _, panic_probe as _}; | |||
| 6 | // auto-generated version information from Cargo.toml | 6 | // auto-generated version information from Cargo.toml |
| 7 | include!(concat!(env!("OUT_DIR"), "/biv.rs")); | 7 | include!(concat!(env!("OUT_DIR"), "/biv.rs")); |
| 8 | 8 | ||
| 9 | #[link_section = ".otfad"] | 9 | #[unsafe(link_section = ".otfad")] |
| 10 | #[used] | 10 | #[used] |
| 11 | static OTFAD: [u8; 256] = [0; 256]; | 11 | static OTFAD: [u8; 256] = [0; 256]; |
| 12 | 12 | ||
| 13 | #[rustfmt::skip] | 13 | #[rustfmt::skip] |
| 14 | #[link_section = ".fcb"] | 14 | #[unsafe(link_section = ".fcb")] |
| 15 | #[used] | 15 | #[used] |
| 16 | static FCB: FlexSPIFlashConfigurationBlock = FlexSPIFlashConfigurationBlock::build(); | 16 | static FCB: FlexSPIFlashConfigurationBlock = FlexSPIFlashConfigurationBlock::build(); |
| 17 | 17 | ||
| 18 | #[link_section = ".keystore"] | 18 | #[unsafe(link_section = ".keystore")] |
| 19 | #[used] | 19 | #[used] |
| 20 | static KEYSTORE: [u8; 2048] = [0; 2048]; | 20 | static KEYSTORE: [u8; 2048] = [0; 2048]; |
