Welcome to our new forum
All users of the legacy CODESYS Forums, please create a new account at account.codesys.com. But make sure to use the same E-Mail address as in the old Forum. Then your posts will be matched. Close

TwinCAT + UDP

2009-11-04
2020-02-19
  • rahulnshinde - 2009-11-04

    Hi,

    I have tried UDP between two Codesys targets and it works good.

    Can any one clarify whether it is possible to exchange data (Network variables) between Codesys target and TwinCAT controller-CX over UDP?

    If Yes, then how shall TwinCAT be configured?

    Regards,

     
  • unknown - 2010-01-21

    I guess, TwinCAT can't be configured for your task. The problem is that TwinCAT PLC Control doesn't have enough functionality for creating network variables. I had the same task but couldn't realize it using network variables.

    If you have to program one of your devices using CoDeSys and the other one using TwinCAT you ought to use special FBs which create Modbus TCP/UDP connection. In order to do this for Beckhoff CX you can use FB_MBReadRegs and FB_MBWriteRegs (see code):

    VAR
       fbModbusRead: FB_MBReadRegs;
       arrData: ARRAY [1..50] OF DINT;
       bError: BOOL;
    END_VAR
    fbModbusRead(
       sIPAddr := '192.168.1.95',
       nTCPPort := 502,
       nUnitID := 16#FF,
       nQuantity := 100,
       nMBAddr := 0,
       cbLength := 200,
       pDestAddr := ADR(arrData),
       bExecute := TRUE,
       tTimeout := t#1s ,
       bBUSY => ,
       bError => bError,
       nErrId => );
    

    But! There is another way to create a connection. A few months ago I spoke to Beckhoff engineers in Moscow office. They created and downloaded an XML-file into my CX9010, so that I could easily create a connection between CX and another CoDeSys programmed PLC. In this case I used very simple code for CX:

    VAR_GLOBAL
       arrayIN AT %MB0: ARRAY [0..15] OF WORD;
       arrayOUT AT %MB32: ARRAY [0..15] OF WORD;
    END_VAR
    
     
  • KineticaRT - 2010-04-19

    You may be interested to join the TwinCAT Developers Group on LinkedIn http://www.linkedin.com/groups?gid=1860933

    You will have to register with LinkedIn before you can join the TwinCAT Develops group.

    The Group has over 300 members and supports an active discussion forum and news area.

     
  • StoeberAs - 2020-02-19

    unknown hat geschrieben:
    I guess, TwinCAT can't be configured for your task. The problem is that TwinCAT PLC Control doesn't have enough functionality for creating network variables. I had the same task but couldn't realize it using network variables.
    If you have to program one of your devices using CoDeSys and the other one using TwinCAT you ought to use special FBs which create Modbus TCP/UDP connection. In order to do this for Beckhoff CX you can use FB_MBReadRegs and FB_MBWriteRegs (see code):

    VAR
       fbModbusRead: FB_MBReadRegs;
       arrData: ARRAY [1..50] OF DINT;
       bError: BOOL;
    END_VAR
    fbModbusRead(
       sIPAddr := '192.168.1.95',
       nTCPPort := 502,
       nUnitID := 16#FF,
       nQuantity := 100,
       nMBAddr := 0,
       cbLength := 200,
       pDestAddr := ADR(arrData),
       bExecute := TRUE,
       tTimeout := t#1s ,
       bBUSY => ,
       bError => bError,
       nErrId => );
    

    But! There is another way to create a connection. A few months ago I spoke to Beckhoff engineers in Moscow office. They created and downloaded an XML-file into my CX9010, so that I could easily create a connection between CX and another CoDeSys programmed PLC. In this case I used very simple code for CX:

    VAR_GLOBAL
       arrayIN AT %MB0: ARRAY [0..15] OF WORD;
       arrayOUT AT %MB32: ARRAY [0..15] OF WORD;
    END_VAR
    
     

Log in to post a comment.