NetBurner 3.1
PlatformSpecific/MOD5441x/EffsMultipleMmc/src/effs_time.h
1 /*NB_REVISION*/
2 
3 /*NB_COPYRIGHT*/
4 
5 
6 #ifndef _EFFS_TIME_H
7 #define _EFFS_TIME_H
8 
9 
10 bool SetTimeNTP(); // Set the system time using a Network Time Server
11 // Set the system time manually
12 void SetTimeManual( int month, int day, int weekday, int year, int hour, int min, int sec );
13 void SetTimeRTC(); // Set the system time using a Real-Time clock
14 
15 void DisplaySystemTime();
16 
17 //extern "C"
18 //{
19 // void tzsetchar(char * tzenv);
20 //}
21 
22 #endif /* _EFFS_TIME_H */
23 
24 
25