1 2 3 4 5 6 7 8 9
#include "time.h" #include "interrupt.h" volatile uint32_t Time::systime; template<> void interrupt<Interrupt::SysTick>() { Time::systime++; }