Adds initial support for MIMXRT600 series MCUs from NXP. Subsequent PRs will add more drivers.
21 lines
494 B
Rust
21 lines
494 B
Rust
#![no_std]
|
|
|
|
use mimxrt600_fcb::FlexSPIFlashConfigurationBlock;
|
|
use {defmt_rtt as _, panic_probe as _};
|
|
|
|
// auto-generated version information from Cargo.toml
|
|
include!(concat!(env!("OUT_DIR"), "/biv.rs"));
|
|
|
|
#[link_section = ".otfad"]
|
|
#[used]
|
|
static OTFAD: [u8; 256] = [0; 256];
|
|
|
|
#[rustfmt::skip]
|
|
#[link_section = ".fcb"]
|
|
#[used]
|
|
static FCB: FlexSPIFlashConfigurationBlock = FlexSPIFlashConfigurationBlock::build();
|
|
|
|
#[link_section = ".keystore"]
|
|
#[used]
|
|
static KEYSTORE: [u8; 2048] = [0; 2048];
|