root / proj / libs / timer / include / timer.h @ 327
History | View | Annotate | Download (413 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 | 281 | up20180642 | #define TIMER0_IRQ 0 /**< @brief Timer 0 IRQ line */ |
9 | |||
10 | 146 | up20180655 | int (subscribe_timer_interrupt)(uint8_t interrupt_bit, int *interrupt_id); |
11 | |||
12 | 323 | up20180642 | void (timer_int_handler)(void); |
13 | |||
14 | 321 | up20180642 | uint32_t (timer_get_no_interrupts)(void);
|
15 | 146 | up20180655 | |
16 | #endif //TIMER_H_INCLUDED |