mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-10-02 14:44:42 +00:00

* Create an `embedded-hal-02` feature and gate implementations, rename `eh1` to `embedded-hal` * Use native `Delay` APIs in examples where applicable * Fix example imports, be explicit about about `embedded-hal-02` feature requirements * Update `CHANGELOG.md`
54 lines
1.4 KiB
Rust
54 lines
1.4 KiB
Rust
//! Demonstrates deep sleep with timer and ext0 (using gpio4) wakeup
|
|
|
|
//% CHIPS: esp32 esp32s3
|
|
|
|
#![no_std]
|
|
#![no_main]
|
|
|
|
use core::time::Duration;
|
|
|
|
use esp_backtrace as _;
|
|
use esp_hal::{
|
|
clock::ClockControl,
|
|
delay::Delay,
|
|
entry,
|
|
gpio::IO,
|
|
peripherals::Peripherals,
|
|
prelude::*,
|
|
rtc_cntl::{
|
|
get_reset_reason,
|
|
get_wakeup_cause,
|
|
sleep::{Ext0WakeupSource, TimerWakeupSource, WakeupLevel},
|
|
Rtc,
|
|
SocResetReason,
|
|
},
|
|
Cpu,
|
|
};
|
|
use esp_println::println;
|
|
|
|
#[entry]
|
|
fn main() -> ! {
|
|
let peripherals = Peripherals::take();
|
|
let system = peripherals.SYSTEM.split();
|
|
let clocks = ClockControl::boot_defaults(system.clock_control).freeze();
|
|
|
|
let mut rtc = Rtc::new(peripherals.LPWR);
|
|
|
|
let io = IO::new(peripherals.GPIO, peripherals.IO_MUX);
|
|
let mut ext0_pin = io.pins.gpio4;
|
|
|
|
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 mut delay = Delay::new(&clocks);
|
|
|
|
let timer = TimerWakeupSource::new(Duration::from_secs(30));
|
|
let ext0 = Ext0WakeupSource::new(&mut ext0_pin, WakeupLevel::High);
|
|
println!("sleeping!");
|
|
delay.delay_millis(100u32);
|
|
rtc.sleep_deep(&[&timer, &ext0], &mut delay);
|
|
}
|