2016-05-25 18:37:40 +03:00
|
|
|
#ifndef __SIMU_TIMER_H
|
|
|
|
#define __SIMU_TIMER_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2016-06-01 19:04:01 +03:00
|
|
|
uint32_t timer_from_us(uint32_t us);
|
2016-05-25 18:37:40 +03:00
|
|
|
void timer_periodic(void);
|
|
|
|
uint32_t timer_read_time(void);
|
|
|
|
uint8_t timer_set_next(uint32_t next);
|
|
|
|
uint8_t timer_try_set_next(uint32_t next);
|
|
|
|
|
|
|
|
#endif // timer.h
|