26 lines
358 B
C
26 lines
358 B
C
#ifndef __EC801E_H__
|
|
#define __EC801E_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "main.h"
|
|
|
|
void EC801E_Power_ON();
|
|
void MQTT_Config();
|
|
void MQTT_Trans_Data();
|
|
int EC801_GET_Time();
|
|
void parse_4g_receive_data();
|
|
void EC801_start();
|
|
|
|
extern uint8_t time_get_ok;
|
|
extern uint32_t g_time_stamp;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __EC801E_H__ */
|
|
|