User Activity

Hi, I use LWIP to establish a connection, We want to change the IP address, how can I update IP? tcpip_init( NULL, NULL );   /* IP addresses initialization without DHCP (IPv4) */ IP4_ADDR(&ipaddr, IP_ADDRESS[0], IP_ADDRESS[1], IP_ADDRESS[2], IP_A...
I build the server to connected. but if i want change the port and built it again, it can't to usehave any advise?void tcp_server_init(void) {   tpcb = tcp_new();   if (tpcb != NULL) { err_t err;   if((Server_port>=9999)||...
Hi, I'm use the STM32F429This is my FREERTOSConfig.h#define configUSE_PREEMPTION 1 #define configSUPPORT_STATIC_ALLOCATION 0 #define configSUPPORT_DYNAMIC_ALLOCATION 1 #define configUSE_IDLE_HOOK ...
I want to use SPI implement SWD protocol. Found this one enter link description hereIs there any advice you can provide detail?Have a nice day