This commit is contained in:
2024-02-19 10:24:26 +01:00
commit 9acc1897c3
5 changed files with 152 additions and 0 deletions

19
time.h Normal file
View File

@ -0,0 +1,19 @@
/*
* time.h
*
* Created on: 20.05.2014
* Author: wn
*/
#ifndef TIME_H_
#define TIME_H_
#include <stdint.h>
void timeInit();
uint32_t getMillis();
void ms_active_delay(uint16_t delay);
#endif /* TIME_H_ */