/******************************************************************************* * File Name : UDPClient.h * Description : * Created on : 2021Äê1ÔÂ9ÈÕ * Author : www.hido-studio.com *******************************************************************************/ #ifndef APL_UDPCLIENT_H_ #define APL_UDPCLIENT_H_ /******************************************************************************* * Include Files * *******************************************************************************/ #include "HIDO_TYpeDef.h" /******************************************************************************* * Macro * *******************************************************************************/ /******************************************************************************* * Type Definition * *******************************************************************************/ #define PWTAG_MAXGROUPNUM 30 struct pwtag_structure { HIDO_UINT8 remain_time,index; HIDO_UINT16 id,value; }; extern struct pwtag_structure pwtag[PWTAG_MAXGROUPNUM]; /******************************************************************************* * Global Function * *******************************************************************************/ /******************************************************************************* * Function Name : * Description : * Input : * Output : * Return : * Author : www.hido-studio.com * Modified Date: : 2021Äê1ÔÂ9ÈÕ *******************************************************************************/ HIDO_INT32 UDPClient_Poll(void); /******************************************************************************* * Function Name : * Description : * Input : * Output : * Return : * Author : www.hido-studio.com * Modified Date: : 2021Äê1ÔÂ9ÈÕ *******************************************************************************/ HIDO_INT32 UDPClient_UploadGPS(HIDO_CHAR *_pcGGA); /******************************************************************************* * Function Name : * Description : * Input : * Output : * Return : * Author : www.hido-studio.com * Modified Date: : 2021Äê1ÔÂ9ÈÕ *******************************************************************************/ HIDO_INT32 UDPClient_Init(void); #endif /* APL_UDPCLIENT_H_ */