repo2/firmware_eclairexl/usb/timer.h @ 1414
269 | markw | // interface between USB timer and minimig timer
|
|
#ifndef TIMER_H
|
|||
#define TIMER_H
|
|||
270 | markw | //#include <inttypes.h>
|
|
#include <common/integer.h>
|
|||
269 | markw | typedef uint32_t msec_t;
|
|
void timer_init();
|
|||
msec_t timer_get_msec();
|
|||
956 | markw | bool timer_elapsed(msec_t end);
|
|
269 | markw | #endif // TIMER_H
|