aboutsummaryrefslogtreecommitdiff
path: root/timer.h
blob: 6284be7633d7f72d79eebf7b13e0c856128d43ca (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef TIMER_H
#define TIMER_H

#include <stdint.h>

void timerStart (const uint32_t t);
uint32_t timerHit ();
void timerStop ();

#endif /* TIMER_H */