You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
386 B
18 lines
386 B
1 week ago
|
/*
|
||
|
* bsp_UDP.h
|
||
|
*
|
||
|
* Created on: Aug 13, 2024
|
||
|
* Author: akeguo
|
||
|
*/
|
||
|
|
||
|
#ifndef INC_BSP_BSP_UDP_H_
|
||
|
#define INC_BSP_BSP_UDP_H_
|
||
|
|
||
|
|
||
|
void udp_printf_CmdBack(char *pData);
|
||
|
void udp_client_init(void);
|
||
|
void GF_UDP_Send(uint8_t *pData,uint16_t Size,uint16_t UDP_port);
|
||
|
void GF_UDP_long_Send_Server(void);
|
||
|
void GF_UpdataPos_Send(uint8_t *pData,uint32_t Size);
|
||
|
#endif /* INC_BSP_BSP_UDP_H_ */
|