Question
ISM43362 WIFI Module on B-L475E-IOT01A
I connect with the module to an Access Point and get IP. Now I have some devices connected to the same Access Point. I want to receive UDP packets from the devices.
What should I do? I can connect only with TCP
if (WIFI_StartServer(SOCKET, WIFI_TCP_PROTOCOL , 1, "", PORT) == WIFI_STATUS_OK)
USART_SendString(SYS_USART, "Start server - SUCCESS\r");
else
USART_SendString(SYS_USART, "Start server - ERROR\r");WIFI_UDP_PROTOCOL connection fails. How can I get UDP packets?