You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef PACER_H
|
|
#define PACER_H
|
|
|
|
#include "system.h"
|
|
|
|
/* Initialise the pacer module. */
|
|
void pacer_init (uint16_t pacer_frequency);
|
|
|
|
|
|
/* Pace a while loop. */
|
|
void pacer_wait (void);
|
|
|
|
#endif //PACER_H
|