blob: 3f9f491caa64b97e7ba2cdd03ea5e988e445d85f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef TIMER_H
#define TIMER_H
#include <stdint.h>
#include <stdbool.h>
void timerStart (const uint32_t t, const bool);
uint32_t timerHit ();
void timerStop ();
#endif /* TIMER_H */
|