blob: 3ddef4d26789f669646d7007ba7f09c2c6ea8200 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef TIMER_H
#define TIMER_H
#include <types.h>
#define TICKS_PER_SECOND 1000
void timer_handler(void);
void wait(uint64_t ms);
void init_timer(uint32_t frequency);
#endif
|