diff options
Diffstat (limited to 'timer.h')
-rw-r--r-- | timer.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,10 +1,10 @@ #ifndef TIMER_H #define TIMER_H -#include <stdbool.h> +#include <stdint.h> -void timerStart (); -bool timerHit (); +void timerStart (const uint32_t t); +uint32_t timerHit (); void timerStop (); #endif /* TIMER_H */ |