当前位置: 代码迷 >> VxWorks >> 请问vxworks 实现rtc时钟设置
  详细解决方案

请问vxworks 实现rtc时钟设置

热度:2377   发布时间:2013-02-26 00:00:00.0
请教vxworks 实现rtc时钟设置
Int clock_gettime(clockid_t clock_id,struct timespec *tp);/*取时钟时间*/
Int clock_settime(clockid_t clock_id,const struct timespec *tp);/*设置时钟时间*/

和时间有关的函数通过timespec数据结构作为入参或者返回值,timespec成为时间规格。

Struct timespec
{  
Time_t tv_sec; /*秒*/  

  Long tv_nsec;/*纳秒*/
};
这个参数好像不能用来设置年月日吧?

------解决方案--------------------------------------------------------
tv_sec 是从1970年1月1日算起,包含了年月日时分秒。
------解决方案--------------------------------------------------------
探讨
tv_sec 是从1970年1月1日算起,包含了年月日时分秒。
  相关解决方案