URL
https://opencores.org/ocsvn/altor32/altor32/trunk
Subversion Repositories altor32
[/] [altor32/] [trunk/] [sw/] [common/] [timer.c] - Rev 42
Compare with Previous | Blame | View Log
#include "mem_map.h" #include "timer.h" //-------------------------------------------------------------------------- // timer_init: //-------------------------------------------------------------------------- void timer_init(void) { // Not required } //-------------------------------------------------------------------------- // timer_sleep: //-------------------------------------------------------------------------- void timer_sleep(int timeMs) { t_time t = timer_now(); while (timer_diff(timer_now(), t) < timeMs) ; }