plc ladder logic in linux

Z

Thread Starter

zam

hi
i need a PLC code generator (ladder logic, structured text, flow chart etc) for PC in linux platform that can convert into instruction list of microcontroller (PIC).

Please let me know if anybody can help me
 
zam:
> i need a PLC code generator (ladder logic, structured text, flow chart
> etc) for PC in linux platform that can convert into instruction list of
> microcontroller (PIC).

The MAT LPLC has a translator from mnemonics to plain C - if you're willing to do mnemonics, then it should be no problem. Either compile the C, or
modify the translator so it outputs PIC code directly.

(Mnemonics translate one-for-one into very simple stack-like instructions, or you could keep track of the stack at translation time, resulting in
register-based code.)

Jiri
--
Jiri Baum <[email protected]> http://www.csse.monash.edu.au/~jirib
MAT LinuxPLC project --- http://mat.sf.net --- Machine Automation Tools
 
Top