05-30-2020 07:30 AM
This is my TCP Client.
TCP Client Communitcate Data for LABVIEW.PNG
This is my Simulink TCP Server.
TCP Server Communitcate Data for Simulink.PNG
This is my Stream Output Setting.
TCP Protocol[1000].PNG
TCP Protocol[1000] Board Setup.PNG
This is my Stream Input Setting.
TCP Protocol[1500].PNG
TCP Protocol[1500] Board Setup.PNG
I can send data from Simulink which the data type is double to Labview which the data type is String ,but My problem is that I can't Receive data from Labview which the data type is String to Simulink which the data type is double.
Please heip me.
Solved! Go to Solution.
08-05-2020 02:17 AM
Hello, jackhuang8686.
Because the Simulink is represented as double, he can read string data incorrect. If you want to receive string data from LV with numeric representation, you can use Fract/Exp String to number function, which will output double data type and will convert your string data correctly
08-27-2020 08:49 PM
Thank you very much, this help me a lot.