17 lines
341 B
C
17 lines
341 B
C
/**
|
|
* @file include/di_fw/time.h
|
|
* @brief Time header file
|
|
* @date August 26, 2015
|
|
* @author A.A.W.M. Ruijs
|
|
* @copyright 2015 Dual Inventive Technology Centre B.V.
|
|
*/
|
|
#ifndef INCLUDE_DI_FW_TIME_H_
|
|
#define INCLUDE_DI_FW_TIME_H_
|
|
|
|
/**
|
|
* Initiation of time for devices.
|
|
*/
|
|
void di_fw_time_init(void);
|
|
|
|
#endif /* INCLUDE_DI_FW_TIME_H_ */
|