root / proj / include / timer.h @ 176
History | View | Annotate | Download (262 Bytes)
1 | 146 | up20180655 | /**
|
---|---|---|---|
2 | * This file concerns everything related to the timer
|
||
3 | */
|
||
4 | |||
5 | #ifndef TIMER_H_INCLUDED
|
||
6 | #define TIMER_H_INCLUDED
|
||
7 | |||
8 | #include <stdint.h> |
||
9 | |||
10 | int (subscribe_timer_interrupt)(uint8_t interrupt_bit, int *interrupt_id); |
||
11 | |||
12 | uint32_t no_interrupts; |
||
13 | |||
14 | #endif //TIMER_H_INCLUDED |