This example: ``` [interrupt] /// Increments the tick overflow. fn TIM3() { with(|cs| { access_global!(TICK_TIMER, timer, cs); timer.clear_interrupt(TimerInterrupt::Update); }); TICK_OVERFLOW_COUNT.fetch_add(1, Ordering::Relaxed); } ``` Being able to include something like this in the interface would be crucial