You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have the issue during the compile time codesys results with the following errors:
Error 4001: UDP_SndRcv(44): Identifier SYSSOCKRECVFROM' not defined
Error 4263: UDP_SndRcv(44): Expected Number 'ELSE' or 'END_CASE'
Error 4001: UDP_SndRcv(70): Identifier SYSSOCKRECVTO' not defined
....
I have tested the prefered version of WagoLibEthernet and also with the version 24.7.13 15:05:58
my plc_prog with a cycle rate 5 seconds:
PROGRAM PLC_PRG
VAR
mqttClient : MQTT_Client;
pub: BOOL;
subi: BOOL;
END_VAR
I have the issue during the compile time codesys results with the following errors:
Error 4001: UDP_SndRcv(44): Identifier SYSSOCKRECVFROM' not defined
Error 4263: UDP_SndRcv(44): Expected Number 'ELSE' or 'END_CASE'
Error 4001: UDP_SndRcv(70): Identifier SYSSOCKRECVTO' not defined
....
I have tested the prefered version of WagoLibEthernet and also with the version 24.7.13 15:05:58
my plc_prog with a cycle rate 5 seconds:
PROGRAM PLC_PRG
VAR
mqttClient : MQTT_Client;
pub: BOOL;
subi: BOOL;
END_VAR
pub := TRUE;
subi := FALSE;
mqttClient(
sTopic:= 'test/home' ,
sPayload:= 'Hello from Wago' ,
sIp:= '192.168.3.34' ,
wPortNumber:= 1883 ,
sUsername:= '' ,
sPassword:= '',
xPublish:= pub ,
xSubscribe:= subi ,
xConnected=> ,
xBusy=> );
The text was updated successfully, but these errors were encountered: