.netportabilityplcccwiec61131-3

Using COM Callable Wrappers in PLC components


I have a Motorolla based, Programmable Logic Control (PLC) device and I write code in it using IEC-61131 structured programming language. The problem is that I have some complex computation to do, so I am trying to write the code in COM Callable Wrapper. So the question is, Is it possible to access functionality coded in CCW developed on .NET framework to access in Motorola based PLC device??

So in short, also what I mean to ask is that whether this CCW be accessible on a non-.NET Framework devices??

Thank you very much in advance.

Regards Irfan


Solution

  • No. You should reimplement your .NET logic in ST (structured text Pascal like IEC-61131 language), or run your .NET logic on PC and then constantly communicate with PLC via some protocol it supports (MODBUS, PROFIBUS...) and write results of your PC based calculations into some PLC tags that will be processed further in PLC.