summaryrefslogtreecommitdiff
path: root/final_project/clock.h
blob: 63b37a34f3dc58b4912beb9fc58e7ca6d15e8034 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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