stm32_rust_template/apps/
interrupts.rs

1use crate::arch::cortex_m4::systick;
2use cortex_m_rt::exception;
3
4#[exception]
5fn SysTick() {
6    systick::increment_ticks();
7}