ds1743.h
上传用户:yuanda199
上传日期:2022-06-26
资源大小:412k
文件大小:0k
源码类别:

VxWorks

开发平台:

C/C++

  1. #ifndef __DS1743_H
  2. #define __DS1743_H
  3. /*
  4.  * DS1743 -Timekeeping Battery backed SRAM.
  5.  */
  6. STATUS ds1743_tod_init(UINT8 *addr);
  7. STATUS ds1743_tod_set(int year,
  8.    int month,
  9.    int day,
  10.    int hour,
  11.    int minute,
  12.    int second);
  13. STATUS ds1743_tod_get(int *year,
  14.    int *month,
  15.    int *day,
  16.    int *hour,
  17.    int *minute,
  18.    int *second);
  19. int ds1743_tod_get_second(void);
  20. #endif /*!__DS1743_H */