2024-08-05 09:18:38 +00:00
|
|
|
#ifndef __EC801E_H__
|
|
|
|
#define __EC801E_H__
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
void EC801E_Power_ON();
|
|
|
|
void MQTT_Config();
|
2024-08-07 09:26:49 +00:00
|
|
|
void MQTT_Trans_Data();
|
2024-08-15 08:35:33 +00:00
|
|
|
int EC801_GET_Time();
|
2024-08-15 01:06:11 +00:00
|
|
|
void parse_4g_receive_data();
|
2024-08-21 03:31:27 +00:00
|
|
|
void EC801_start();
|
2024-08-05 09:18:38 +00:00
|
|
|
|
2024-08-15 08:35:33 +00:00
|
|
|
extern uint8_t time_get_ok;
|
2024-08-16 07:35:22 +00:00
|
|
|
extern uint32_t g_time_stamp;
|
2024-08-15 08:35:33 +00:00
|
|
|
|
2024-08-05 09:18:38 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __EC801E_H__ */
|
|
|
|
|