10 lines
146 B
C
10 lines
146 B
C
#ifndef __PTIMER_H__
|
|
#define __PTIMER_H__
|
|
|
|
#define TIMERS_COUNT 0
|
|
|
|
extern volatile uint16_t timers[TIMERS_COUNT];
|
|
|
|
void ptimer_init(void);
|
|
|
|
#endif |