#ifndef __timer0_h__
#define __timer0_h__

#ifdef __cplusplus
extern "C" {
#endif

int timer0Init(void);
void timer0Delay(unsigned int);
unsigned int timer0GetTicks(void);
int timer0PeriodicEventEnable(unsigned int);
void timer0PeriodicEventDisable(void);

#ifdef __cplusplus
}
#endif

#endif /* __timer0_h__ */



