Hey everyone,
I'm back from vacation and now I've got this :
IP= '192.168.10.94';
port = 2049;
tcpipObj=tcpip(IP, port);
fopen(tcpipObj);
tcpipObj.Terminator = 'CR/LF';
fprintf(tcpipObj,'11009¶1¶1');
A = fread(tcpipObj,500,'char') ;
A = char (A);
fclose(tcpipObj);
The external device answer, but it takes to much time and I have this warning :
'Warning: The specified amount of data was not returned within the Timeout period.
'tcpip' unable to read all requested data. For more information on possible reasons, see TCPIP Read Warnings. '
I didn't find the solution on Internet and I really know why ... Nobody knows how to fix it ? :(