9ceb218f80
Co-authored-by: Cursor <cursoragent@cursor.com>
28 lines
638 B
C
28 lines
638 B
C
|
|
#ifndef EC200A_4G_FTP_H
|
|
#define EC200A_4G_FTP_H
|
|
|
|
#ifdef __cplusplus /*C++编译环境下兼容C语言*/
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*------ Exported includes(头文件) ----------------------*/
|
|
#include "publicdata/type.h"
|
|
/*------ Exported macro(宏定义) -------------------------*/
|
|
|
|
/*------ Exported struct(结构体定义) --------------------*/
|
|
|
|
/*------ Exported variables(变量定义) -------------------*/
|
|
|
|
/*------ Exported function prototypes (函数声明) -------*/
|
|
U8_T u8_ec200a_4g_ftp_update();
|
|
U8_T u8_ec200a_4g_ftp_log_upload();
|
|
|
|
void v_ftp_ctrl_init();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* EC200A_4G_FTP_H */
|