59 lines
1.5 KiB
Rust
59 lines
1.5 KiB
Rust
//! Demonstrates deep sleep with timer, using low and high level pins as wakeup sources.
|
|
//!
|
|
//! The following wiring is assumed:
|
|
//! - ext1 wakeup pin => GPIO2 (low level)
|
|
//! => GPIO3 (high level)
|
|
|
|
//% CHIPS: esp32c6
|
|
|
|
#![no_std]
|
|
#![no_main]
|
|
|
|
use core::time::Duration;
|
|
|
|
use esp_backtrace as _;
|
|
use esp_hal::{
|
|
delay::Delay,
|
|
entry,
|
|
gpio::{Input, Pull, RtcPinWithResistors},
|
|
peripheral::Peripheral,
|
|
rtc_cntl::{
|
|
get_reset_reason,
|
|
get_wakeup_cause,
|
|
sleep::{Ext1WakeupSource, TimerWakeupSource, WakeupLevel},
|
|
Rtc,
|
|
SocResetReason,
|
|
},
|
|
Cpu,
|
|
};
|
|
use esp_println::println;
|
|
|
|
#[entry]
|
|
fn main() -> ! {
|
|
let peripherals = esp_hal::init(esp_hal::Config::default());
|
|
|
|
let mut rtc = Rtc::new(peripherals.LPWR);
|
|
|
|
let pin2 = Input::new(peripherals.GPIO2, Pull::None);
|
|
let mut pin3 = peripherals.GPIO3;
|
|
|
|
println!("up and runnning!");
|
|
let reason = get_reset_reason(Cpu::ProCpu).unwrap_or(SocResetReason::ChipPowerOn);
|
|
println!("reset reason: {:?}", reason);
|
|
let wake_reason = get_wakeup_cause();
|
|
println!("wake reason: {:?}", wake_reason);
|
|
|
|
let delay = Delay::new();
|
|
let timer = TimerWakeupSource::new(Duration::from_secs(10));
|
|
|
|
let wakeup_pins: &mut [(&mut dyn RtcPinWithResistors, WakeupLevel)] = &mut [
|
|
(&mut *pin2.into_ref(), WakeupLevel::Low),
|
|
(&mut pin3, WakeupLevel::High),
|
|
];
|
|
|
|
let rtcio = Ext1WakeupSource::new(wakeup_pins);
|
|
println!("sleeping!");
|
|
delay.delay_millis(100);
|
|
rtc.sleep_deep(&[&timer, &rtcio]);
|
|
}
|