<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Wi-Fi® + Bluetooth® + 802.15.4のトピックRe: RW612 echo_tcp_client Lwip Connect Problem</title>
    <link>https://community.nxp.com/t5/Wi-Fi-Bluetooth-802-15-4/RW612-echo-tcp-client-Lwip-Connect-Problem/m-p/2358121#M4787</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/261864"&gt;@Dr_Ron&lt;/a&gt;.&lt;/P&gt;
&lt;P&gt;Sorry for not being clear before, I meant to ask you to please share logs with debug macros enabled to have a better insight of this behavior.&lt;/P&gt;
&lt;P&gt;You may enable these debugging macros in the&amp;nbsp;&lt;STRONG&gt;lwipopts_gen.h&amp;nbsp;&lt;/STRONG&gt;file inside the source folder of the project.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Tue, 28 Apr 2026 23:52:37 GMT</pubDate>
    <dc:creator>RomanVR</dc:creator>
    <dc:date>2026-04-28T23:52:37Z</dc:date>
    <item>
      <title>RW612 echo_tcp_client Lwip Connect Problem</title>
      <link>https://community.nxp.com/t5/Wi-Fi-Bluetooth-802-15-4/RW612-echo-tcp-client-Lwip-Connect-Problem/m-p/2353393#M4770</link>
      <description>&lt;P&gt;I am unable to get the shell command "echo_tcp_client" in example project "frdmrw612_lwip_ipv4_ipv6_echo_freertos" to connect to a PC using the FRDM-RW612 development board.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using version v25.6 of MCUXpresso IDE.&amp;nbsp; I am also using version 26-03-00 of the SDK for the RW612 board.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My PC has a fixed IP address of 196.168.0.100.&amp;nbsp; The RW612 board uses address 198.168.0.102.&amp;nbsp; I am using port 50000.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I use an older Linksys AP/Router, model WRT54GS v.2 for network connections.&amp;nbsp; RW612 Wi-Fi works well with this device.&amp;nbsp; I have also tried a newer AP/Router, NETGEAR model R6220.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The shell command "echo_tcp_server" works as designed as shown below which demonstrates the PHY got configured correctly and is functional.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SHELL&amp;gt;&amp;gt; echo_tcp_server 50000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Creating new socket.&lt;/P&gt;&lt;P&gt;Waiting for incoming connection.&amp;nbsp; Use end command to return...&lt;/P&gt;&lt;P&gt;ECHO_TCP_SERVER&amp;gt;&amp;gt;&lt;/P&gt;&lt;P&gt;Accepted connection&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Echoing data. Use end command to return...&lt;/P&gt;&lt;P&gt;5B sent back.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For the "echo_tcp_server" command, I use the ncat command on my PC Command Window as shown below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;C:\Users\RonL&amp;gt;ncat -v 192.168.0.102 50000&lt;/P&gt;&lt;P&gt;Ncat: Version 7.98 ( &lt;A href="https://nmap.org/ncat" target="_blank"&gt;https://nmap.org/ncat&lt;/A&gt; )&lt;/P&gt;&lt;P&gt;Ncat: Connected to 192.168.0.102:50000.&lt;/P&gt;&lt;P&gt;hello&lt;/P&gt;&lt;P&gt;hello&lt;/P&gt;&lt;P&gt;Ncat: 5 bytes sent, 5 bytes received in 22.89 seconds.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can also use a Python program snippet to communicate with the "echo_tcp_server" as shown below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;s2 = socket.create_connection(("192.168.0.102", 50000))&lt;/P&gt;&lt;P&gt;while True:&lt;/P&gt;&lt;P&gt;&amp;nbsp; message = input("Input a message to send &amp;gt;")&lt;/P&gt;&lt;P&gt;&amp;nbsp; if message == "close":&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; s2.close()&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; break&lt;/P&gt;&lt;P&gt;&amp;nbsp; else:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; s2.send(message.encode())&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All of this works well with the "echo_tcp_server" in example project "frdmrw612_lwip_ipv4_ipv6_echo_freertos".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, if I now try to send something to a server using the "echo_tcp_client" command, the connection to the client never occurs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is ncat on my Windows Command Window setup as a server:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;C:\Users\RonL&amp;gt;ncat -v -l -p 50000&lt;/P&gt;&lt;P&gt;Ncat: Version 7.98 ( &lt;A href="https://nmap.org/ncat" target="_blank"&gt;https://nmap.org/ncat&lt;/A&gt; )&lt;/P&gt;&lt;P&gt;Ncat: Listening on [::]:50000&lt;/P&gt;&lt;P&gt;Ncat: Listening on 0.0.0.0:50000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the "echo_tcp_client 192.168.0.100 50000" command executed on the RW612 board:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SHELL&amp;gt;&amp;gt; echo_tcp_client 192.168.0.100 50000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Creating new socket.&lt;/P&gt;&lt;P&gt;Connecting...&lt;/P&gt;&lt;P&gt;Connecting failed. errno=103&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As can be seen, the connection never takes place from the RW612 generating the error #103 (software error).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A similar Python snippet below behaves the same way.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;with socket.create_server(("", 50000)) as s:&lt;/P&gt;&lt;P&gt;&amp;nbsp; #s.setblocking(False)&lt;/P&gt;&lt;P&gt;&amp;nbsp; s.listen(1)&lt;/P&gt;&lt;P&gt;&amp;nbsp; while True:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print("Waiting for client to send a message")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; comm, addr = s.accept()&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; while data := comm.recv(1024):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print("[{}] {}".format(addr[0], data.decode()))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am certain that the ncat commands that I am using are correct as well as the Python program code snippets because these all work with the example project "frdmrw612_wifi_ipv4_ipv6_echo" for both server and client connections.&amp;nbsp; This project does not use the PHY.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The above error with the "echo_tcp_client" seems to be generated in the lwip command "lwip_connect()".&amp;nbsp; This command then calls the function "netconn_connect()"&amp;nbsp; It is in this function that I see a delay followed by the error 103.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There should be no doubt that the router and cables that I am using are all functional because data is transmitted correctly with the "echo_tcp_server" command.&amp;nbsp; I can successfully ping the RW612 board from the Windows Command window.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you help me determine the code to fix in this project to get the "echo_tcp_client" working?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dr_Ron&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2026 01:30:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wi-Fi-Bluetooth-802-15-4/RW612-echo-tcp-client-Lwip-Connect-Problem/m-p/2353393#M4770</guid>
      <dc:creator>Dr_Ron</dc:creator>
      <dc:date>2026-04-20T01:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: RW612 echo_tcp_client Lwip Connect Problem</title>
      <link>https://community.nxp.com/t5/Wi-Fi-Bluetooth-802-15-4/RW612-echo-tcp-client-Lwip-Connect-Problem/m-p/2356753#M4783</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/261864"&gt;@Dr_Ron&lt;/a&gt;,&amp;nbsp;sorry for the delay.&lt;/P&gt;
&lt;P&gt;Would you please share logs of the serial terminal of the behavior that you are watching when trying to connect as client?&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 27 Apr 2026 23:15:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wi-Fi-Bluetooth-802-15-4/RW612-echo-tcp-client-Lwip-Connect-Problem/m-p/2356753#M4783</guid>
      <dc:creator>RomanVR</dc:creator>
      <dc:date>2026-04-27T23:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: RW612 echo_tcp_client Lwip Connect Problem</title>
      <link>https://community.nxp.com/t5/Wi-Fi-Bluetooth-802-15-4/RW612-echo-tcp-client-Lwip-Connect-Problem/m-p/2358004#M4785</link>
      <description>&lt;P&gt;&lt;SPAN&gt;RomanVR:&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I have already provided you with all the serial logs associated with this "echo_tcp_client" problem with LwIP on the RW612.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Here is the main serial output when the problem occurs:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;SHELL&amp;gt;&amp;gt; echo_tcp_client 192.168.0.100 50000&lt;/DIV&gt;&lt;DIV&gt;Connecting...&lt;/DIV&gt;&lt;DIV&gt;Connecting failed. errno=103.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;For your information, I have been exploring possible issues with FreeRTOS.&amp;nbsp; This project appears to not set a reasonable heap size.&amp;nbsp; I recently changed the FreeRTOS heap size to 100,000 and changed to heap scheme 4 as shown below.&amp;nbsp; However, this did not fix the problem.&amp;nbsp; I am now exploring possible issues with LwIP and its configuration.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;In file: "FreeRTOSConfig_Gen.h"&lt;/DIV&gt;&lt;DIV&gt;#define configTOTAL_HEAP_SIZE 100000&lt;BR /&gt;#define configFRTOS_MEMORY_SCHEME 4&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Thanks for addressing this issue.&amp;nbsp; I hope that we can find a solution to it.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Dr_Ron&lt;/DIV&gt;</description>
      <pubDate>Tue, 28 Apr 2026 15:43:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wi-Fi-Bluetooth-802-15-4/RW612-echo-tcp-client-Lwip-Connect-Problem/m-p/2358004#M4785</guid>
      <dc:creator>Dr_Ron</dc:creator>
      <dc:date>2026-04-28T15:43:26Z</dc:date>
    </item>
    <item>
      <title>Re: RW612 echo_tcp_client Lwip Connect Problem</title>
      <link>https://community.nxp.com/t5/Wi-Fi-Bluetooth-802-15-4/RW612-echo-tcp-client-Lwip-Connect-Problem/m-p/2358121#M4787</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/261864"&gt;@Dr_Ron&lt;/a&gt;.&lt;/P&gt;
&lt;P&gt;Sorry for not being clear before, I meant to ask you to please share logs with debug macros enabled to have a better insight of this behavior.&lt;/P&gt;
&lt;P&gt;You may enable these debugging macros in the&amp;nbsp;&lt;STRONG&gt;lwipopts_gen.h&amp;nbsp;&lt;/STRONG&gt;file inside the source folder of the project.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Apr 2026 23:52:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wi-Fi-Bluetooth-802-15-4/RW612-echo-tcp-client-Lwip-Connect-Problem/m-p/2358121#M4787</guid>
      <dc:creator>RomanVR</dc:creator>
      <dc:date>2026-04-28T23:52:37Z</dc:date>
    </item>
    <item>
      <title>Re: RW612 echo_tcp_client Lwip Connect Problem</title>
      <link>https://community.nxp.com/t5/Wi-Fi-Bluetooth-802-15-4/RW612-echo-tcp-client-Lwip-Connect-Problem/m-p/2358135#M4788</link>
      <description>&lt;P&gt;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/243613"&gt;@RomanVR&lt;/a&gt;&lt;/P&gt;&lt;P&gt;You are going to have to tell me which of the hundred or so defines in the lwipopts_gen.h file to enable/disable or send me a copy of your file for me to use.&amp;nbsp; I don't know which ones to change to enable the logging that you want.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2026 01:06:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wi-Fi-Bluetooth-802-15-4/RW612-echo-tcp-client-Lwip-Connect-Problem/m-p/2358135#M4788</guid>
      <dc:creator>Dr_Ron</dc:creator>
      <dc:date>2026-04-29T01:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: RW612 echo_tcp_client Lwip Connect Problem</title>
      <link>https://community.nxp.com/t5/Wi-Fi-Bluetooth-802-15-4/RW612-echo-tcp-client-Lwip-Connect-Problem/m-p/2359484#M4790</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/261864"&gt;@Dr_Ron&lt;/a&gt;.&lt;/P&gt;
&lt;P&gt;Would you please confirm if the tests that you have been doing were done with a corporate computer? Sometimes corporate devices are secured, and this may be causing the connection abortion.&lt;/P&gt;
&lt;P&gt;I have tried to run the example with my personal laptop, and I was able to connect the board with the echo_tcp_client command.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RomanVR_0-1777584986659.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/384201i9553F146EDD79147/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RomanVR_0-1777584986659.png" alt="RomanVR_0-1777584986659.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2026 21:36:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wi-Fi-Bluetooth-802-15-4/RW612-echo-tcp-client-Lwip-Connect-Problem/m-p/2359484#M4790</guid>
      <dc:creator>RomanVR</dc:creator>
      <dc:date>2026-04-30T21:36:50Z</dc:date>
    </item>
    <item>
      <title>Re: RW612 echo_tcp_client Lwip Connect Problem</title>
      <link>https://community.nxp.com/t5/Wi-Fi-Bluetooth-802-15-4/RW612-echo-tcp-client-Lwip-Connect-Problem/m-p/2359507#M4792</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/243613"&gt;@RomanVR&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using my personal computer for these tests not a corporate computer.&amp;nbsp; Also, my router is on my desktop and is ONLY connected to the PC and the RW612 board.&amp;nbsp; I'm pretty sure that all of the IP addresses are correct.&lt;/P&gt;&lt;P&gt;What seems strange here is that the equivalent WiFi project has both the server and client echo tests working.&amp;nbsp; Also, the example HTTP Server project works perfectly, demonstrating that to/from communications with the RW612 board are working.&lt;/P&gt;&lt;P&gt;Let me try a different PC and a different router to see if I can get the echo_tcp_client to work.&lt;/P&gt;&lt;P&gt;Please be aware that the error message that is being generated on my system is not a "connection" error.&amp;nbsp; It is a "software" error.&lt;/P&gt;&lt;P&gt;Let me get back to you after a few more experiments.&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/261864"&gt;@Dr_Ron&lt;/a&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 May 2026 02:07:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wi-Fi-Bluetooth-802-15-4/RW612-echo-tcp-client-Lwip-Connect-Problem/m-p/2359507#M4792</guid>
      <dc:creator>Dr_Ron</dc:creator>
      <dc:date>2026-05-01T02:07:29Z</dc:date>
    </item>
    <item>
      <title>Re: RW612 echo_tcp_client Lwip Connect Problem</title>
      <link>https://community.nxp.com/t5/Wi-Fi-Bluetooth-802-15-4/RW612-echo-tcp-client-Lwip-Connect-Problem/m-p/2360260#M4795</link>
      <description>&lt;P&gt;Hello again&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/243613"&gt;@RomanVR&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have determined the problem associated with "echo_tcp_client" command in the LwIP Echo project.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is due to the IP address that NXP is using for the RW612 board.&amp;nbsp; This fixed address is located in file "app.h" and is currently set to 192.168.0.102.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem that I believe with using this address is that some AP/Routers use this address internally and causes a conflict when the RW612 board tries to use this address.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I set this address to 192.168.1.102, everything is now working.&amp;nbsp; Also, using this address in the LwIP Ping project makes that project start to work also.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The reason that the original IP board address of 192.168.0.102 works for your team is because your AP/Routers behave differently than the two IP/Routers that I have.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NXP may want to consider updating the LwIP projects in the next SDK so that others don't experience this problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The RW612 board is an awesome board using the M33 processor and the external flash memory.&amp;nbsp; The fact that it does both 2.4 and 5 MHz allows for a lot of wireless flexibility that your competitors don't have.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/261864"&gt;@Dr_Ron&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2026 02:31:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wi-Fi-Bluetooth-802-15-4/RW612-echo-tcp-client-Lwip-Connect-Problem/m-p/2360260#M4795</guid>
      <dc:creator>Dr_Ron</dc:creator>
      <dc:date>2026-05-05T02:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: RW612 echo_tcp_client Lwip Connect Problem</title>
      <link>https://community.nxp.com/t5/Wi-Fi-Bluetooth-802-15-4/RW612-echo-tcp-client-Lwip-Connect-Problem/m-p/2360547#M4796</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/261864"&gt;@Dr_Ron&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Thanks for your feedback, glad to know that you got the example working properly now.&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2026 15:13:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wi-Fi-Bluetooth-802-15-4/RW612-echo-tcp-client-Lwip-Connect-Problem/m-p/2360547#M4796</guid>
      <dc:creator>RomanVR</dc:creator>
      <dc:date>2026-05-05T15:13:37Z</dc:date>
    </item>
  </channel>
</rss>

