-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathnvmc.rs
More file actions
42 lines (33 loc) · 1.02 KB
/
nvmc.rs
File metadata and controls
42 lines (33 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#![no_std]
#![no_main]
use defmt::{info, unwrap};
use embassy_executor::Spawner;
use embassy_nrf::nvmc::Nvmc;
use embassy_time::Timer;
use embedded_storage::nor_flash::{NorFlash, ReadNorFlash};
use {defmt_rtt as _, panic_probe as _};
#[embassy_executor::main]
async fn main(_spawner: Spawner) {
let p = embassy_nrf::init(Default::default());
info!("Hello NVMC!");
// probe-rs run breaks without this, I'm not sure why.
Timer::after_secs(1).await;
let mut f = Nvmc::new(p.NVMC);
const ADDR: u32 = 0x80000;
info!("Reading...");
let mut buf = [0u8; 4];
unwrap!(f.read(ADDR, &mut buf));
info!("Read: {=[u8]:x}", buf);
info!("Erasing...");
unwrap!(f.erase(ADDR, ADDR + 4096));
info!("Reading...");
let mut buf = [0u8; 4];
unwrap!(f.read(ADDR, &mut buf));
info!("Read: {=[u8]:x}", buf);
info!("Writing...");
unwrap!(f.write(ADDR, &[1, 2, 3, 4]));
info!("Reading...");
let mut buf = [0u8; 4];
unwrap!(f.read(ADDR, &mut buf));
info!("Read: {=[u8]:x}", buf);
}