How do I close the udpport with 2021b? Error Unable to bind to LOCALHOST and LOCALPORT. Verify that the LOCALPORT is not in use...
조회 수: 36 (최근 30일)
이전 댓글 표시
I am switching my app to use the new udpport. It works the first time I use it. However, when I close the app, then run it again and attempt to connect, it seems that the resource is still in use:
Error: "Unable to bind to LOCALHOST and LOCALPORT. Verify that the LOCALPORT is not in use, and that LOCALHOST and LOCALPORT are valid for IPADDRESSVERSION "IPV4"."
I used to just use delete(isntrfind) or instrreset, but those don't seem to work. Now, if I start a udpport, then close the app, I get the error above. I have to close matlab to get it to forget the udp port.
Thanks!
댓글 수: 1
Rakesh
2023년 3월 31일
Hi Brandon.
Add close button in first app where you can add clear udpport in the "ButtonPushedFcn" of close button.
In the second app in the startup function you can reconfigure the udpport .
답변 (2개)
Dor Luzon
2022년 5월 30일
Hey,
The only thing that actually close the conneciton for me is using the udpport function delete.
udpPort.delete();
flushing and clearing the object doesn't work.
댓글 수: 0
Walter Roberson
2021년 11월 30일
in theory it needs to have the variable holding the port cleared. I suggest that you put in an onCleanup to ensure that it is done.
댓글 수: 3
Walter Roberson
2021년 11월 30일
I don't think you can clear a struct member; I think you would need to assign something else such as [] over top of app.ZMotor.portName
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!