summaryrefslogtreecommitdiff
path: root/final_project/clock.h
diff options
context:
space:
mode:
Diffstat (limited to 'final_project/clock.h')
-rw-r--r--final_project/clock.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/final_project/clock.h b/final_project/clock.h
new file mode 100644
index 0000000..63b37a3
--- /dev/null
+++ b/final_project/clock.h
@@ -0,0 +1,17 @@
+/*
+ * clock.h
+ *
+ * Created: 4/3/2024 10:29:26 AM
+ * Author: bsw9xd
+ */
+#ifndef CLOCK_H
+#define CLOCK_H
+
+#include <avr/io.h>
+#include <stdbool.h>
+
+void timer_init_ctc();
+void start_timer();
+void stop_timer();
+bool timer_done();
+#endif \ No newline at end of file