aboutsummaryrefslogtreecommitdiff
path: root/timer.h
diff options
context:
space:
mode:
Diffstat (limited to 'timer.h')
-rw-r--r--timer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/timer.h b/timer.h
index c1b3511..6284be7 100644
--- a/timer.h
+++ b/timer.h
@@ -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 */