-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #139 from gustavonihei/feature/rwdt_esp32_s2_s3
rtc: Add RWDT examples for ESP32, ESP32-S2 and ESP32-S3
- Loading branch information
Showing
8 changed files
with
205 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
//! This demos the RTC Watchdog Timer (RWDT). | ||
//! The RWDT is initially configured to trigger an interrupt after a given | ||
//! timeout. Then, upon expiration, the RWDT is restarted and then reconfigured | ||
//! to reset both the main system and the RTC. | ||
|
||
#![no_std] | ||
#![no_main] | ||
|
||
use core::cell::RefCell; | ||
|
||
use esp32_hal::{ | ||
clock::ClockControl, | ||
interrupt, | ||
pac::{self, Peripherals}, | ||
prelude::*, | ||
Rtc, | ||
Rwdt, | ||
}; | ||
use panic_halt as _; | ||
use xtensa_lx::mutex::{CriticalSectionMutex, Mutex}; | ||
use xtensa_lx_rt::entry; | ||
|
||
static mut RWDT: CriticalSectionMutex<RefCell<Option<Rwdt>>> = | ||
CriticalSectionMutex::new(RefCell::new(None)); | ||
|
||
#[entry] | ||
fn main() -> ! { | ||
let peripherals = Peripherals::take().unwrap(); | ||
let system = peripherals.DPORT.split(); | ||
let _clocks = ClockControl::boot_defaults(system.clock_control).freeze(); | ||
|
||
let mut rtc = Rtc::new(peripherals.RTC_CNTL); | ||
|
||
// Disable watchdog timer | ||
rtc.rwdt.disable(); | ||
|
||
rtc.rwdt.start(2000u64.millis()); | ||
rtc.rwdt.listen(); | ||
|
||
interrupt::enable(pac::Interrupt::RTC_CORE, interrupt::Priority::Priority1).unwrap(); | ||
|
||
unsafe { | ||
(&RWDT).lock(|data| (*data).replace(Some(rtc.rwdt))); | ||
} | ||
|
||
loop {} | ||
} | ||
|
||
#[interrupt] | ||
fn RTC_CORE() { | ||
unsafe { | ||
(&RWDT).lock(|data| { | ||
esp_println::println!("RWDT Interrupt"); | ||
|
||
let mut rwdt = data.borrow_mut(); | ||
let rwdt = rwdt.as_mut().unwrap(); | ||
|
||
rwdt.clear_interrupt(); | ||
|
||
esp_println::println!("Restarting in 5 seconds..."); | ||
|
||
rwdt.start(5000u64.millis()); | ||
rwdt.unlisten(); | ||
}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ pub use esp_hal_common::{ | |
PulseControl, | ||
Rng, | ||
Rtc, | ||
Rwdt, | ||
Serial, | ||
}; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
//! This demos the RTC Watchdog Timer (RWDT). | ||
//! The RWDT is initially configured to trigger an interrupt after a given | ||
//! timeout. Then, upon expiration, the RWDT is restarted and then reconfigured | ||
//! to reset both the main system and the RTC. | ||
|
||
#![no_std] | ||
#![no_main] | ||
|
||
use core::cell::RefCell; | ||
|
||
use esp32s2_hal::{ | ||
clock::ClockControl, | ||
interrupt, | ||
pac::{self, Peripherals}, | ||
prelude::*, | ||
Rtc, | ||
Rwdt, | ||
}; | ||
use panic_halt as _; | ||
use xtensa_lx::mutex::{CriticalSectionMutex, Mutex}; | ||
use xtensa_lx_rt::entry; | ||
|
||
static mut RWDT: CriticalSectionMutex<RefCell<Option<Rwdt>>> = | ||
CriticalSectionMutex::new(RefCell::new(None)); | ||
|
||
#[entry] | ||
fn main() -> ! { | ||
let peripherals = Peripherals::take().unwrap(); | ||
let system = peripherals.SYSTEM.split(); | ||
let _clocks = ClockControl::boot_defaults(system.clock_control).freeze(); | ||
|
||
let mut rtc = Rtc::new(peripherals.RTC_CNTL); | ||
|
||
// Disable watchdog timer | ||
rtc.rwdt.disable(); | ||
|
||
rtc.rwdt.start(2000u64.millis()); | ||
rtc.rwdt.listen(); | ||
|
||
interrupt::enable(pac::Interrupt::RTC_CORE, interrupt::Priority::Priority1).unwrap(); | ||
|
||
unsafe { | ||
(&RWDT).lock(|data| (*data).replace(Some(rtc.rwdt))); | ||
} | ||
|
||
loop {} | ||
} | ||
|
||
#[interrupt] | ||
fn RTC_CORE() { | ||
unsafe { | ||
(&RWDT).lock(|data| { | ||
esp_println::println!("RWDT Interrupt"); | ||
|
||
let mut rwdt = data.borrow_mut(); | ||
let rwdt = rwdt.as_mut().unwrap(); | ||
|
||
rwdt.clear_interrupt(); | ||
|
||
esp_println::println!("Restarting in 5 seconds..."); | ||
|
||
rwdt.start(5000u64.millis()); | ||
rwdt.unlisten(); | ||
}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ pub use esp_hal_common::{ | |
PulseControl, | ||
Rng, | ||
Rtc, | ||
Rwdt, | ||
Serial, | ||
}; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
//! This demos the RTC Watchdog Timer (RWDT). | ||
//! The RWDT is initially configured to trigger an interrupt after a given | ||
//! timeout. Then, upon expiration, the RWDT is restarted and then reconfigured | ||
//! to reset both the main system and the RTC. | ||
|
||
#![no_std] | ||
#![no_main] | ||
|
||
use core::cell::RefCell; | ||
|
||
use esp32s3_hal::{ | ||
clock::ClockControl, | ||
interrupt, | ||
pac::{self, Peripherals}, | ||
prelude::*, | ||
Rtc, | ||
Rwdt, | ||
}; | ||
use panic_halt as _; | ||
use xtensa_lx::mutex::{CriticalSectionMutex, Mutex}; | ||
use xtensa_lx_rt::entry; | ||
|
||
static mut RWDT: CriticalSectionMutex<RefCell<Option<Rwdt>>> = | ||
CriticalSectionMutex::new(RefCell::new(None)); | ||
|
||
#[entry] | ||
fn main() -> ! { | ||
let peripherals = Peripherals::take().unwrap(); | ||
let system = peripherals.SYSTEM.split(); | ||
let _clocks = ClockControl::boot_defaults(system.clock_control).freeze(); | ||
|
||
let mut rtc = Rtc::new(peripherals.RTC_CNTL); | ||
|
||
// Disable watchdog timers | ||
rtc.swd.disable(); | ||
rtc.rwdt.disable(); | ||
|
||
rtc.rwdt.start(2000u64.millis()); | ||
rtc.rwdt.listen(); | ||
|
||
interrupt::enable(pac::Interrupt::RTC_CORE, interrupt::Priority::Priority1).unwrap(); | ||
|
||
unsafe { | ||
(&RWDT).lock(|data| (*data).replace(Some(rtc.rwdt))); | ||
} | ||
|
||
loop {} | ||
} | ||
|
||
#[interrupt] | ||
fn RTC_CORE() { | ||
unsafe { | ||
(&RWDT).lock(|data| { | ||
esp_println::println!("RWDT Interrupt"); | ||
|
||
let mut rwdt = data.borrow_mut(); | ||
let rwdt = rwdt.as_mut().unwrap(); | ||
|
||
rwdt.clear_interrupt(); | ||
|
||
esp_println::println!("Restarting in 5 seconds..."); | ||
|
||
rwdt.start(5000u64.millis()); | ||
rwdt.unlisten(); | ||
}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,7 @@ pub use esp_hal_common::{ | |
PulseControl, | ||
Rng, | ||
Rtc, | ||
Rwdt, | ||
Serial, | ||
UsbSerialJtag, | ||
}; | ||
|