23 lines
780 B
C
23 lines
780 B
C
|
/*****************************************************************************
|
|||
|
* @copyright 1997-2050, . POWER SUPPLY CO., LTD.
|
|||
|
* @file drv_rtc.h
|
|||
|
* @brief xx功能
|
|||
|
* @author Gary
|
|||
|
* @date 2024-09-29
|
|||
|
* @remark
|
|||
|
*****************************************************************************/
|
|||
|
#ifndef DRV_RTC_H
|
|||
|
#define DRV_RTC_H
|
|||
|
#include <stdint.h>
|
|||
|
#include <pthread.h>
|
|||
|
#include <stdio.h>
|
|||
|
|
|||
|
/*********************************************************************
|
|||
|
* @brief 设置系统时间
|
|||
|
* @param[in] sec: 1970年以来的秒数
|
|||
|
* @return 0:成功;1:失败
|
|||
|
*********************************************************************/
|
|||
|
int setSysTime(time_t sec, char linuxPass[50]);
|
|||
|
|
|||
|
|
|||
|
#endif // DRV_RTC_H
|