6 lines
159 B
C
6 lines
159 B
C
#ifndef TIMER_H_INCLUDED
|
|
#define TIMER_H_INCLUDED
|
|
void timer_init(uint32_t clock, uint32_t prescaler, uint32_t interval_ms);
|
|
void timer_disable(void);
|
|
|
|
#endif
|