initial, ported from constantly failed C++ variant

This commit is contained in:
Wolfgang Hottgenroth
2016-08-29 19:24:24 +02:00
commit 35bef18ec0
16 changed files with 635 additions and 0 deletions

19
src/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_ */