17 lines
252 B
C
17 lines
252 B
C
/*
|
|
* 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 |