STS_E2/Air_Quality_LORAWAN_WINEXT_.../User/user_wifi.h

25 lines
632 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef __USER_WIFI_H
#define __USER_WIFI_H
#include "main.h"
#include "user_sensor.h"
typedef enum sal_proto_en {
TOS_SAL_PROTO_TCP,
TOS_SAL_PROTO_UDP,
} sal_proto_t;
//MQTT½ÓÊÕÊý×é
extern uint8_t mqttRecvData[256];
void Check_WifiConfigState(void);
void SendDate_Wifi(SensorDataTypeDef *sensorData);
int SendDate_Wifi_MQTT(int sock, unsigned char *buf, int buflen);
int RecvDate_Wifi_MQTT(int sock, unsigned char *buf, int count);
int Wifi_Net_Connect(const char *ip, const char *port, sal_proto_t proto);
int Wifi_Net_Close(int sock);
int CheckState_Wifi(void);
int NetConfig_Wifi(void);
#endif /* __USER_WIFI_H */