-
Notifications
You must be signed in to change notification settings - Fork 322
/
NexRtc.h
executable file
·93 lines (74 loc) · 2 KB
/
NexRtc.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/**
* @file NexRtc.h
*
* The definition of class NexRtc.
*
* @author Wu Pengfei (email:<pengfei.wu@itead.cc>)
* @date 2015/8/13
*
* @copyright
* Copyright (C) 2014-2015 ITEAD Intelligent Systems Co., Ltd. \n
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*/
#ifndef _NEXRTC_H
#define _NEXRTC_H
#include "NexTouch.h"
#include "NexHardware.h"
/**
* @addtogroup Component
* @{
*/
/**
* NexRtc component.
*/
class NexRtc
{
public:
bool write_rtc_time(char *time);
/**
* write rtc times
*
* @param time_type - To type in time (example:write_rtc_time("year",2016))
* @param number - the time value
* @return true if success, false for failure
*/
bool write_rtc_time(char *time_type,uint32_t number);
/**
* write rtc times
*
* @param time - Time to write to the array
* @return true if success, false for failure
*/
bool write_rtc_time(uint32_t *time);
/**
* read rtc time
*
* @param time - Access data array
* @param len - len of array
* @return true if success, false for failure
*/
uint32_t read_rtc_time(char *time,uint32_t len);
/**
* read rtc times
*
* @param time_type - To type in time
* @param number - the time value
* @return true if success, false for failure
*/
uint32_t read_rtc_time(char *time_type,uint32_t *number);
/**
* read rtc time
*
* @param time - Access data array
* @param len - len of array
* @return true if success, false for failure
*/
uint32_t read_rtc_time(uint32_t *time,uint32_t len);
};
/**
* @}
*/
#endif /* #ifndef __NEXRTC_H__ */