Skip to content
Snippets Groups Projects
timer.h 159 B
Newer Older
Tomasz Wlostowski's avatar
Tomasz Wlostowski committed
#ifndef __TIMER_H
#define __TIMER_H

#include "types.h"

#define TICS_PER_SECOND 1000

Tomasz Wlostowski's avatar
Tomasz Wlostowski committed
uint32_t timer_get_tics();
void timer_delay(uint32_t how_long);

#endif