Lines Matching refs:_rtc_device
24 static rt_device_t _rtc_device; variable
152 if (_rtc_device == RT_NULL) in set_date()
154 _rtc_device = rt_device_find("rtc"); in set_date()
155 if (_rtc_device == RT_NULL) in set_date()
162 ret = rt_device_control(_rtc_device, RT_DEVICE_CTRL_RTC_GET_TIME, &old_timestamp); in set_date()
180 ret = rt_device_control(_rtc_device, RT_DEVICE_CTRL_RTC_SET_TIME, &now); in set_date()
199 if (_rtc_device == RT_NULL) in set_time()
201 _rtc_device = rt_device_find("rtc"); in set_time()
202 if (_rtc_device == RT_NULL) in set_time()
209 ret = rt_device_control(_rtc_device, RT_DEVICE_CTRL_RTC_GET_TIME, &old_timestamp); in set_time()
227 ret = rt_device_control(_rtc_device, RT_DEVICE_CTRL_RTC_SET_TIME, &now); in set_time()
240 if (_rtc_device == RT_NULL) in set_timestamp()
242 _rtc_device = rt_device_find("rtc"); in set_timestamp()
243 if (_rtc_device == RT_NULL) in set_timestamp()
250 return rt_device_control(_rtc_device, RT_DEVICE_CTRL_RTC_SET_TIME, ×tamp); in set_timestamp()
262 if (_rtc_device == RT_NULL) in get_timestamp()
264 _rtc_device = rt_device_find("rtc"); in get_timestamp()
265 if (_rtc_device == RT_NULL) in get_timestamp()
272 return rt_device_control(_rtc_device, RT_DEVICE_CTRL_RTC_GET_TIME, timestamp); in get_timestamp()