/*******************************************************************************
|
* 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"
|
#include "main.h"
|
/*******************************************************************************
|
* Macro *
|
*******************************************************************************/
|
|
/*******************************************************************************
|
* Type Definition *
|
*******************************************************************************/
|
|
/*******************************************************************************
|
* 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);
|
HIDO_INT32 UDPClient_Uploadhex(uint8_t *_pcGGA,uint16_t u32Len);
|
HIDO_INT32 UDPClient_Heartbeat(HIDO_VOID);
|
#endif /* APL_UDPCLIENT_H_ */
|