20 lines
162 B
C
20 lines
162 B
C
/*
|
|
* time.h
|
|
*
|
|
* Created on: 17.01.2016
|
|
* Author: wn
|
|
*/
|
|
|
|
#ifndef TIME_H_
|
|
#define TIME_H_
|
|
|
|
|
|
|
|
void timeInit();
|
|
uint32_t ticks();
|
|
|
|
|
|
|
|
|
|
#endif /* TIME_H_ */
|