My Project
 All Classes Files Functions Typedefs Groups Pages
NexRtc.h
1 #ifndef _NEXRTC_H
2 #define _NEXRTC_H
3 
4 #include "NexTouch.h"
5 #include "NexHardware.h"
6 
7 
8 class NexRtc
9 {
10  public:
11 
12  bool write_rtc_time(char *time);
13 
22  bool write_rtc_time(char *time_type,uint32_t number);
23 
31  bool write_rtc_time(uint32_t *time);
32 
33 
42  uint32_t read_rtc_time(char *time,uint32_t len);
43 
52  uint32_t read_rtc_time(char *time_type,uint32_t *number);
53 
62  uint32_t read_rtc_time(uint32_t *time,uint32_t len);
63 
64 };
65 
66 #endif
Definition: NexRtc.h:8
uint32_t read_rtc_time(char *time, uint32_t len)
Definition: NexRtc.cpp:166