15 lines
164 B
C
15 lines
164 B
C
/**
|
|
* \file
|
|
*/
|
|
|
|
#ifndef TIMER_H
|
|
#define TIMER_H
|
|
|
|
/**
|
|
* Initialize the timer
|
|
* \param freq The freqency to set the timer to
|
|
*/
|
|
void timer_init(int freq);
|
|
|
|
#endif
|