embassy/examples/nrf/src/bin/qspi_lowpower.rs

79 lines
2.3 KiB
Rust
Raw Normal View History

2021-05-26 23:26:44 +02:00
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
use core::mem;
2022-06-12 22:15:44 +02:00
use defmt::{info, unwrap};
use embassy_executor::Spawner;
use embassy_nrf::{interrupt, qspi};
use embassy_time::{Duration, Timer};
2022-06-12 22:15:44 +02:00
use {defmt_rtt as _, panic_probe as _};
2021-05-26 23:26:44 +02:00
// Workaround for alignment requirements.
// Nicer API will probably come in the future.
#[repr(C, align(4))]
struct AlignedBuf([u8; 64]);
#[embassy_executor::main]
async fn main(_p: Spawner) {
let mut p = embassy_nrf::init(Default::default());
2021-05-26 23:26:44 +02:00
let mut irq = interrupt::take!(QSPI);
loop {
// Config for the MX25R64 present in the nRF52840 DK
2021-05-26 23:26:44 +02:00
let mut config = qspi::Config::default();
config.read_opcode = qspi::ReadOpcode::READ4IO;
config.write_opcode = qspi::WriteOpcode::PP4IO;
config.write_page_size = qspi::WritePageSize::_256BYTES;
2021-05-26 23:26:44 +02:00
config.deep_power_down = Some(qspi::DeepPowerDownConfig {
enter_time: 3, // tDP = 30uS
exit_time: 3, // tRDP = 35uS
});
let mut q: qspi::Qspi<_, 67108864> = qspi::Qspi::new(
2021-05-26 23:26:44 +02:00
&mut p.QSPI,
&mut irq,
&mut p.P0_19,
&mut p.P0_17,
&mut p.P0_20,
&mut p.P0_21,
&mut p.P0_22,
&mut p.P0_23,
config,
);
2021-05-26 23:26:44 +02:00
let mut id = [1; 3];
unwrap!(q.custom_instruction(0x9F, &[], &mut id).await);
2021-05-26 23:26:44 +02:00
info!("id: {}", id);
// Read status register
let mut status = [4; 1];
unwrap!(q.custom_instruction(0x05, &[], &mut status).await);
2021-05-26 23:26:44 +02:00
info!("status: {:?}", status[0]);
if status[0] & 0x40 == 0 {
status[0] |= 0x40;
unwrap!(q.custom_instruction(0x01, &status, &mut []).await);
2021-05-26 23:26:44 +02:00
info!("enabled quad in status");
}
let mut buf = AlignedBuf([0u8; 64]);
info!("reading...");
unwrap!(q.read(0, &mut buf.0).await);
2021-05-26 23:26:44 +02:00
info!("read: {=[u8]:x}", buf.0);
// Drop the QSPI instance. This disables the peripehral and deconfigures the pins.
// This clears the borrow on the singletons, so they can now be used again.
mem::drop(q);
// Sleep for 1 second. The executor ensures the core sleeps with a WFE when it has nothing to do.
// During this sleep, the nRF chip should only use ~3uA
Timer::after(Duration::from_secs(1)).await;
}
}