1 2 3 4 5 6 7 8 9 10 11
#ifndef TIMER_H #define TIMER_H #include <stdint.h> void timerStart (const uint32_t t); uint32_t timerHit (); void timerStop (); #endif /* TIMER_H */