TCP-IP Compiling Problems
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Eduardo Díaz Díaz
am 1 Feb. 2021
Kommentiert: Eduardo Díaz Díaz
am 2 Feb. 2021
Hi everyone,
I am facing a problem that I don't even know if it is fixable.
I have created a function to communicate with a PLC and I am using tcp commands, such as this one:
t=tcpip(IP_str, Port_number, 'NetworkRole','server');,
where IP_str and Port_number are variables that define the IP and the port number of the PLC.
The problem comes up when I try to compile this function, becase the MATLAB Coder does not recognize tcp ip.
Do you know if there's anyway to compile a program with TCP IP commands?
Kind regards,
Eduardo
2 Kommentare
Darshan Ramakant Bhat
am 2 Feb. 2021
It looks like that the function "tcpip" will be removed in one of the future release.
Please try to use the below function :
Akzeptierte Antwort
Walter Roberson
am 2 Feb. 2021
tcpclient() is for networkrole 'client', not 'server', and cannot be used to replace the 'server' role.
There is a File Exchange contribution for TCP that uses third-party code.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Application Deployment finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!