User Activity

ip4_addr_t remote_ip; struct netconn *clientConn; IP4_ADDR(&remote_ip, 192, 168, 0, 11); clientConn = netconn_new(NETCONN_TCP); if(clientConn != NULL) { conn_err = netconn_connect(clientConn, &remote_ip, 8789); if(conn_err == ERR_OK) { netconn_...
I referred to the example of 1.16.1 of F746G.The contents of MPU_Config() and System Clock_Config() have been copied. Ping test failed after applying rtOS (Stack Size = 256) and LWIP.The example is ping test, so there is no problem with the configura...
The server connects and communicates normally, and the Client experiences a return value = -13, Abort in the connect function.Using the Netconn API, the user program is hercles_3-2-8.exe. PC IP is 192.168.0.223 and Device IP is 192.168.0.222.The code...