16 lines
244 B
C
16 lines
244 B
C
|
|
#ifndef RTC_TASK_H
|
||
|
|
#define RTC_TASK_H
|
||
|
|
|
||
|
|
#include <stdint.h>
|
||
|
|
#include <stdbool.h>
|
||
|
|
#include <stddef.h>
|
||
|
|
|
||
|
|
#include "DrvRtcI2c.h"
|
||
|
|
#include "BSPI2C.h"
|
||
|
|
|
||
|
|
void RtcTask(void *p_arg);
|
||
|
|
|
||
|
|
// 全局变量
|
||
|
|
extern USR_DRV_RTC_I2C_TIME time;
|
||
|
|
#endif // RTC_TASK_H
|