Borrar filtros
Borrar filtros

How do I close the udpport with 2021b? Error Unable to bind to LOCALHOST and LOCALPORT. Verify that the LOCALPORT is not in use...

40 visualizaciones (últimos 30 días)
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 comentario
Rakesh
Rakesh el 31 de Mzo. de 2023
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 .

Iniciar sesión para comentar.

Respuestas (2)

Dor Luzon
Dor Luzon el 30 de Mayo de 2022
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.

Walter Roberson
Walter Roberson el 30 de Nov. de 2021
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 comentarios
Walter Roberson
Walter Roberson el 30 de Nov. de 2021
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

Iniciar sesión para comentar.

Etiquetas

Productos


Versión

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by