mirror of
				https://github.com/esp-rs/esp-hal.git
				synced 2025-11-03 22:32:57 +00:00 
			
		
		
		
	* wip: timg embassy driver - read_raw on timg renamed to now() - timg initialized and stored in static for use in the embassy driver - timg sets alarm value - untested whether alarms actually trigger * TIMG timer driver for esp32, esp32s3 - Adds the timg timer block as a time driver for embassy - Not enabled on the C3 as it only has one timer block, better to use systimer - s2 example added but can't build due to atomic requirements in futures-core * Add S2 atomic support with emulation, fixup embassy support for the S2 * Move executor & static-cell to dev deps. Make eha optional * Add c2 support, run fmt * Update to crates.io embassy releases * Update eha * update timg time driver to new trait * Remove exception feature of esp-backtrace and use the user handler for backtracing * Add async testing workflow * Update systick example * Fix S2 examples * Update xtensa-toolchain * set rustflags for s2 target * Disable systick for esp32s2 until we can fix the noted issues * review improvements - Fix intr prio array being off by one - emabssy time prio interrupt set to max prio - use cfg instead of feature for systick detection * Update example time delays
		
			
				
	
	
		
			145 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			145 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
//! This shows how to use the TIMG peripheral interrupts.
 | 
						|
//! There is TIMG0 and TIMG1 each of them containing two general purpose timers
 | 
						|
//! and a watchdog timer.
 | 
						|
 | 
						|
#![no_std]
 | 
						|
#![no_main]
 | 
						|
 | 
						|
use core::cell::RefCell;
 | 
						|
 | 
						|
use critical_section::Mutex;
 | 
						|
use esp32s2_hal::{
 | 
						|
    clock::ClockControl,
 | 
						|
    interrupt,
 | 
						|
    interrupt::Priority,
 | 
						|
    pac::{self, Peripherals, TIMG0, TIMG1},
 | 
						|
    prelude::*,
 | 
						|
    timer::{Timer, Timer0, Timer1, TimerGroup},
 | 
						|
    Rtc,
 | 
						|
};
 | 
						|
use esp_backtrace as _;
 | 
						|
use esp_println::println;
 | 
						|
use xtensa_atomic_emulation_trap as _;
 | 
						|
use xtensa_lx_rt::entry;
 | 
						|
 | 
						|
static TIMER00: Mutex<RefCell<Option<Timer<Timer0<TIMG0>>>>> = Mutex::new(RefCell::new(None));
 | 
						|
static TIMER01: Mutex<RefCell<Option<Timer<Timer1<TIMG0>>>>> = Mutex::new(RefCell::new(None));
 | 
						|
static TIMER10: Mutex<RefCell<Option<Timer<Timer0<TIMG1>>>>> = Mutex::new(RefCell::new(None));
 | 
						|
static TIMER11: Mutex<RefCell<Option<Timer<Timer1<TIMG1>>>>> = Mutex::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();
 | 
						|
 | 
						|
    // Disable the TIMG watchdog timer.
 | 
						|
    let timer_group0 = TimerGroup::new(peripherals.TIMG0, &clocks);
 | 
						|
    let mut timer00 = timer_group0.timer0;
 | 
						|
    let mut timer01 = timer_group0.timer1;
 | 
						|
    let mut wdt0 = timer_group0.wdt;
 | 
						|
 | 
						|
    let timer_group1 = TimerGroup::new(peripherals.TIMG1, &clocks);
 | 
						|
    let mut timer10 = timer_group1.timer0;
 | 
						|
    let mut timer11 = timer_group1.timer1;
 | 
						|
    let mut wdt1 = timer_group1.wdt;
 | 
						|
 | 
						|
    let mut rtc = Rtc::new(peripherals.RTC_CNTL);
 | 
						|
 | 
						|
    // Disable MWDT and RWDT (Watchdog) flash boot protection
 | 
						|
    wdt0.disable();
 | 
						|
    wdt1.disable();
 | 
						|
    rtc.rwdt.disable();
 | 
						|
 | 
						|
    interrupt::enable(pac::Interrupt::TG0_T0_LEVEL, Priority::Priority2).unwrap();
 | 
						|
    interrupt::enable(pac::Interrupt::TG0_T1_LEVEL, Priority::Priority2).unwrap();
 | 
						|
    interrupt::enable(pac::Interrupt::TG1_T0_LEVEL, Priority::Priority3).unwrap();
 | 
						|
    interrupt::enable(pac::Interrupt::TG1_T1_LEVEL, Priority::Priority3).unwrap();
 | 
						|
    timer00.start(500u64.millis());
 | 
						|
    timer00.listen();
 | 
						|
    timer01.start(2500u64.millis());
 | 
						|
    timer01.listen();
 | 
						|
    timer10.start(1u64.secs());
 | 
						|
    timer10.listen();
 | 
						|
    timer11.start(3u64.secs());
 | 
						|
    timer11.listen();
 | 
						|
 | 
						|
    critical_section::with(|cs| {
 | 
						|
        TIMER00.borrow_ref_mut(cs).replace(timer00);
 | 
						|
        TIMER01.borrow_ref_mut(cs).replace(timer01);
 | 
						|
        TIMER10.borrow_ref_mut(cs).replace(timer10);
 | 
						|
        TIMER11.borrow_ref_mut(cs).replace(timer11);
 | 
						|
    });
 | 
						|
 | 
						|
    loop {}
 | 
						|
}
 | 
						|
 | 
						|
#[interrupt]
 | 
						|
fn TG0_T0_LEVEL() {
 | 
						|
    critical_section::with(|cs| {
 | 
						|
        let mut timer = TIMER00.borrow_ref_mut(cs);
 | 
						|
        let timer = timer.as_mut().unwrap();
 | 
						|
 | 
						|
        if timer.is_interrupt_set() {
 | 
						|
            timer.clear_interrupt();
 | 
						|
            timer.start(500u64.millis());
 | 
						|
            println!("Interrupt Level 2 - Timer0");
 | 
						|
        }
 | 
						|
    });
 | 
						|
}
 | 
						|
 | 
						|
#[interrupt]
 | 
						|
fn TG0_T1_LEVEL() {
 | 
						|
    critical_section::with(|cs| {
 | 
						|
        let mut timer = TIMER01.borrow_ref_mut(cs);
 | 
						|
        let timer = timer.as_mut().unwrap();
 | 
						|
 | 
						|
        if timer.is_interrupt_set() {
 | 
						|
            timer.clear_interrupt();
 | 
						|
            timer.start(500u64.millis());
 | 
						|
            println!("Interrupt Level 2 - Timer1");
 | 
						|
        }
 | 
						|
    });
 | 
						|
}
 | 
						|
 | 
						|
#[interrupt]
 | 
						|
fn TG1_T0_LEVEL() {
 | 
						|
    critical_section::with(|cs| {
 | 
						|
        let mut timer = TIMER10.borrow_ref_mut(cs);
 | 
						|
        let timer = timer.as_mut().unwrap();
 | 
						|
 | 
						|
        if timer.is_interrupt_set() {
 | 
						|
            timer.clear_interrupt();
 | 
						|
            timer.start(500u64.millis());
 | 
						|
            println!("Interrupt Level 3 - Timer0");
 | 
						|
        }
 | 
						|
    });
 | 
						|
}
 | 
						|
 | 
						|
#[interrupt]
 | 
						|
fn TG1_T1_LEVEL() {
 | 
						|
    critical_section::with(|cs| {
 | 
						|
        let mut timer = TIMER11.borrow_ref_mut(cs);
 | 
						|
        let timer = timer.as_mut().unwrap();
 | 
						|
 | 
						|
        if timer.is_interrupt_set() {
 | 
						|
            timer.clear_interrupt();
 | 
						|
            timer.start(500u64.millis());
 | 
						|
            println!("Interrupt Level 3 - Timer1");
 | 
						|
        }
 | 
						|
    });
 | 
						|
}
 | 
						|
 | 
						|
#[xtensa_lx_rt::exception]
 | 
						|
fn exception(cause: xtensa_lx_rt::exception::ExceptionCause, frame: xtensa_lx_rt::exception::Context) {
 | 
						|
    use esp_println::*;
 | 
						|
 | 
						|
    println!("\n\nException occured {:?} {:x?}", cause, frame);
 | 
						|
    
 | 
						|
    let backtrace = esp_backtrace::arch::backtrace();
 | 
						|
    for b in backtrace.iter() {
 | 
						|
        if let Some(addr) = b {
 | 
						|
            println!("0x{:x}", addr)
 | 
						|
        }
 | 
						|
    }
 | 
						|
} |