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.
16 lines
296 B
16 lines
296 B
/*
|
|
* bsp_UDP.h
|
|
*
|
|
* Created on: Aug 13, 2024
|
|
* Author: akeguo
|
|
*/
|
|
|
|
#ifndef INC_BSP_BSP_UDP_H_
|
|
#define INC_BSP_BSP_UDP_H_
|
|
|
|
void udp_client_init(void);
|
|
|
|
|
|
void udp_dlt_send_back(char *pData,uint16_t Size);
|
|
void udp_cmd_send_back(char *pData, uint16_t Size);
|
|
#endif /* INC_BSP_BSP_UDP_H_ */
|
|
|