13 lines
155 B
C
13 lines
155 B
C
#ifndef TIME_H_
|
|
#define TIME_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
void timeInit();
|
|
uint32_t getMillis();
|
|
void ms_active_delay(uint16_t delay);
|
|
|
|
|
|
|
|
#endif /* TIME_H_ */
|