| 214 | } |
| 215 | |
| 216 | static rt_err_t _rtc_get_secs(time_t *args) |
| 217 | { |
| 218 | *(rt_uint32_t *)args = get_rtc_timestamp(); |
| 219 | LOG_D("RTC: get rtc_time %x\n", *(rt_uint32_t *)args); |
| 220 | |
| 221 | return RT_EOK; |
| 222 | } |
| 223 | |
| 224 | static rt_err_t _rtc_set_secs(time_t *args) |
| 225 | { |
nothing calls this directly
no test coverage detected