census logo
[bootcensus] / src / timer.h
1 /*
2 256boss - bootable launcher for 256byte intros
3 Copyright (C) 2018-2019  John Tsiombikas <nuclear@member.fsf.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY, without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <https://www.gnu.org/licenses/>.
17 */
18 #ifndef _TIMER_H_
19 #define _TIMER_H_
20
21 #include "config.h"
22
23 #define MSEC_TO_TICKS(ms)       ((ms) * TICK_FREQ_HZ / 1000)
24 #define TICKS_TO_MSEC(tk)       ((tk) * 1000 / TICK_FREQ_HZ)
25
26 volatile unsigned long nticks;
27
28 void init_timer(void);
29
30 /*
31 int sys_sleep(int sec);
32 void sleep(unsigned long msec);
33 */
34
35 /* schedule a function to be called 'msec' milliseconds into the future
36  * warning: this function will be called directly from the timer interrupt, and
37  * must be extremely quick.
38  */
39 void set_alarm(unsigned long msec, void (*func)(void));
40 void cancel_alarm(void (*func)(void));
41
42 #endif  /* _TIMER_H_ */