mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-10-04 23:54:55 +00:00

* Add changelog entry * Copy esp32 impl, update RtcSleepConfig * implement apply * extract rtc_sleep_pu * Implement base_settings based on esp-idf rtc_init * Hide CPU-specific sleep code * Set base_settings when constructing Rtc * Add s3 deep sleep defaults * Implement finish_sleep * Turn magic constant into enum * Clear ext1 wakeup status * Add wakeup source impls * Add examples
60 lines
1.5 KiB
Rust
60 lines
1.5 KiB
Rust
//! Demonstrates deep sleep with timer wakeup
|
|
|
|
#![no_std]
|
|
#![no_main]
|
|
|
|
use core::time::Duration;
|
|
|
|
use esp32s3_hal as hal;
|
|
use esp_backtrace as _;
|
|
use esp_println::println;
|
|
use hal::{
|
|
clock::ClockControl,
|
|
entry,
|
|
peripherals::Peripherals,
|
|
prelude::*,
|
|
rtc_cntl::{get_reset_reason, get_wakeup_cause, sleep::TimerWakeupSource, SocResetReason},
|
|
timer::TimerGroup,
|
|
Delay,
|
|
Rtc,
|
|
};
|
|
|
|
#[entry]
|
|
fn main() -> ! {
|
|
let peripherals = Peripherals::take();
|
|
let mut system = peripherals.SYSTEM.split();
|
|
let clocks = ClockControl::boot_defaults(system.clock_control).freeze();
|
|
|
|
// Disable the RTC and TIMG watchdog timers
|
|
let mut rtc = Rtc::new(peripherals.RTC_CNTL);
|
|
let timer_group0 = TimerGroup::new(
|
|
peripherals.TIMG0,
|
|
&clocks,
|
|
&mut system.peripheral_clock_control,
|
|
);
|
|
let mut wdt0 = timer_group0.wdt;
|
|
let timer_group1 = TimerGroup::new(
|
|
peripherals.TIMG1,
|
|
&clocks,
|
|
&mut system.peripheral_clock_control,
|
|
);
|
|
let mut wdt1 = timer_group1.wdt;
|
|
|
|
rtc.rwdt.disable();
|
|
wdt0.disable();
|
|
wdt1.disable();
|
|
|
|
println!("up and runnning!");
|
|
let reason = get_reset_reason(hal::Cpu::ProCpu).unwrap_or(SocResetReason::ChipPowerOn);
|
|
println!("reset reason: {:?}", reason);
|
|
let wake_reason = get_wakeup_cause();
|
|
println!("wake reason: {:?}", wake_reason);
|
|
|
|
let mut delay = Delay::new(&clocks);
|
|
|
|
let timer = TimerWakeupSource::new(Duration::from_secs(30));
|
|
println!("sleeping!");
|
|
delay.delay_ms(100u32);
|
|
rtc.sleep_deep(&[&timer], &mut delay);
|
|
}
|