#ifndef _TIMER_H #define _TIMER_H /* updates 18.2 times per second */ extern volatile uint32_t ticks; void timer_init(); void timer_free(); /* each t is 54.9254 ms */ void timer_wait(uint8_t t); #endif /* _TIMER_H */