EmbeddedSystems/EmbeddedSystemsTHM/Timer.h

16 lines
202 B
C
Raw Normal View History

/*
* Timer.h
*
* Created: 28/10/2021 17:49:26
* Author: n0x
*/
#ifndef TIMER_H_
#define TIMER_H_
#include <avr/io.h>
void Timer_init(void);
uint16_t Timer_getTick(void);
#endif /* TIMER_H_ */