/* * activity10.c * * Created on: Oct 28, 2025 * Author: sowgro */ // create a clock that prints once per second using interrupts // configure systick handler for interrupts // write interrupt handler // print every second #include "systick.h" #include void activity10_run() { init_systick(); } void SysTick_Handler() { static int i = 0; i++; if (!(i & 1023)) { printf("%d\r\n", i>>10); } }