15 lines
636 B
C
15 lines
636 B
C
#ifndef __APP_HART_H__
|
||
#define __APP_HART_H__
|
||
#include "lib.h"
|
||
#include "wl_flash.h"
|
||
#include "hart.h"
|
||
#include "app_hart_user.h"
|
||
#include "app_hart_user_standard.h"
|
||
|
||
#define HART_BASE_SECS (315532800U) // 1980-01-01 0:0:0
|
||
|
||
extern void app_hart_update_time(void); // 更新时间
|
||
extern BOOL app_hart_storage_is_written(uint32_t address, uint16_t length); // 是否已经写入过数据,只检查前200个字节
|
||
extern void hart_write_test(void); // 测试写入
|
||
#endif // __APP_HART_H__
|