1
0
mirror of https://github.com/mist-devel/mist-firmware.git synced 2026-01-23 02:37:42 +00:00
2013-03-25 13:53:52 +00:00

14 lines
227 B
C

// interface between USB timer and minimig timer
#ifndef TIMER_H
#define TIMER_H
#include <inttypes.h>
typedef uint32_t msec_t;
void timer_init();
msec_t timer_get_msec();
void timer_delay_msec(msec_t t);
#endif // TIMER_H