43 lines
803 B
C
43 lines
803 B
C
#ifndef _SF_FILE_H_
|
|
#define _SF_FILE_H_
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
#endif
|
|
#include "sf_type.h"
|
|
#include "sf_param_common.h"
|
|
|
|
|
|
|
|
SINT32 sf_quectel_upload_file_to_module(UINT8 *fileAbsolutePath, UINT8 *uploadFname);
|
|
|
|
SINT32 sf_upload_send_files_to_module(UINT8 mode);
|
|
UINT8 sf_check_file_video(void);
|
|
|
|
UINT8 sf_get_upload_to_module_flag(void);
|
|
|
|
void sf_set_upload_to_module_flag(UINT8 Falg);
|
|
|
|
void sf_app_set_temper(SINT16 val); /*0:°F 1:°C */
|
|
|
|
void sf_app_set_battery(UINT8 val, UINT8 type);
|
|
|
|
UINT32 sf_create_dailyreport_file(void);
|
|
|
|
UINT8 sf_app_get_battery(void);
|
|
|
|
void sf_custom_send_str_get(UINT8 *sendName, UINT8 *pStr);
|
|
|
|
BOOL sf_is_enough_power_to_update(void);
|
|
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|
|
|
|
|
|
#endif
|
|
|