aboutsummaryrefslogtreecommitdiff
path: root/timer.h
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2015-01-13 13:15:52 +0100
committerLars-Dominik Braun <lars@6xq.net>2015-01-13 13:15:52 +0100
commitebc6f6a6cf20a25c0dd2cefaa9c86285509a3407 (patch)
treecc6eabf4c0983aa64139ae37b868960f8f0071d5 /timer.h
parentbaff9933bb21440df0cd78dbf65d794e793d7e4b (diff)
downloadhourglass-ebc6f6a6cf20a25c0dd2cefaa9c86285509a3407.tar.gz
hourglass-ebc6f6a6cf20a25c0dd2cefaa9c86285509a3407.tar.bz2
hourglass-ebc6f6a6cf20a25c0dd2cefaa9c86285509a3407.zip
Add generic flash ui state, fix timer race condition
Diffstat (limited to 'timer.h')
-rw-r--r--timer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/timer.h b/timer.h
index 6284be7..3f9f491 100644
--- a/timer.h
+++ b/timer.h
@@ -2,8 +2,9 @@
#define TIMER_H
#include <stdint.h>
+#include <stdbool.h>
-void timerStart (const uint32_t t);
+void timerStart (const uint32_t t, const bool);
uint32_t timerHit ();
void timerStop ();