Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to come up with a CM process for PLC code.

Currently, the system is developed using RSLogix 5000. The build product is a monolithic file that can be loaded onto a PLC for execution and edited directly in the development environment. With multiple developers, this has become a problem. They're stepping on each others changes.

As an analogy, it's as if, when doing Java development, the only wway to edit and save the source would be to load up a *.jar file into your IDE, make the change, and then save it back to the jar file. This is less than ideal.

How can I coordinate changes between multiple developers working with PLC's?

share|improve this question

5 Answers

up vote 2 down vote accepted

If we are talking about one big binary files, then a VCS (centralized or decentralized) is not the best tool for the job.
An external referencial (a shared disk for instance) where a batch will copy and label the current PCL state is better.
See "Tracking Software History"

To avert discontinuities in the historical record of revisions, old versions of programs must be stored.
“We take it a step further, though. Using our MDT AutoSave, we actually go out and interrogate the equipment. Overnight or at whatever frequency is specified, the software reads the programs in the PLCs and then compares that information to the last known program. The version-control software will copy the new program and store it and [then] compare it to the last one.

Launching version control is fairly simple. Required is software installation and then hardware configuration. “You would need a server and a couple of weeks of engineering and you’re good to go,” Perysyn says. However, his company uses a “shrink-wrap approach” that involves installing the software and then customization by users filling in the blanks.

That being said, when you have multiple changes from multiple developers, you need an integration environment where a first delivery can be done and validated, before pushing it to the actual server.

See also this post.

share|improve this answer
Thanks. You've confirmed my fears :) – Dave Nov 18 '10 at 18:04

A simple thing to do would be to do a text diff on the .l5k files so you can easily see whether a developer has been messing with part of the file that is outside of their scope.

share|improve this answer
Yeah, that's pretty much what we're stuck with. – Dave Feb 1 '11 at 20:03
@Dave: How is this different than general software development? You may have a number of modifications going on by different developers; what you need is typical configuration management tool merge process in which the latest guy to check has to merge his changes carefully. ... you might want to look at advanced "diff" tools, such as our semanticdesigns.com/Products/SmartDifferencer tools, which is layout insensitive. We have L5K front ends that could be used with such a tool. – Ira Baxter Feb 2 '11 at 20:16
@Ira: in general development, the source code is split up into many small files instead of one monolitic file. – Dave Feb 3 '11 at 13:31
@Dave: ... and why do you do that? If it is split up the same way each time, then treat each fragment as a development file. Our SmartDiff tool won't be able to help you because you only have code fragments, so you'll be stuck with regular diff. – Ira Baxter Feb 3 '11 at 15:04
@Dave: Sorry, I didn't initially understand what you meant: "in normal development, there are typically a lot of files (small? maybe) and coders tend to work in separate files." True, but sometimes they work in the same file, and then you have merge problem; this is NORMAL. And it isn't different than your situation. You need a merge tool, you'll just use it more often than the typical development process. – Ira Baxter Feb 6 '11 at 1:02

I use Unity Pro, so this may not apply for other brands.

Unity can export an "archive" file which is XML which describes the PLC program and IO setup in its entirety. After commissioning changes, I create an export and check it in to my local Git repo. This gets me an annotated history of changes, but no visual comparison. I can always use UnityDiff for comparison.

Check out http://www.mdtsoft.com/ also

share|improve this answer

This is a very good question and it really depends on what you want it to do. If you are only using Rockwell equipment it might be helpfull to look at their solution, I think it's called FactoryTalk AssetCentre. Currently I am looking into using Bazaar from Canonical. One thing that VonC pointed out is that a piece of software that can interogate the PLC is a deffinate plus, not a must in my oppinion but it sure as hell helps.

Am I reading your question properly and you have multiple developers working on the same PLC code at the same time? It's a scary thought but I know it sometimes needs to happen, Siemens PLC's are a bit easier to program with multiple developers but I would assign one person to consolidate and test all the changes before committing to the PLC. Any CVS system will let you create branches for every developer but how you would get them to consolidate their changes is the million dolar question.

Bart.

share|improve this answer
I'm not a PLC coder, so I can't say definitively that they're working on the same code, i.e. both working in Foo.java at the same time, but thay are definitely trying to independantly extract Foo.java and Bar.java from Baz.jar, make their respective changes, and then independatnly check in Baz.jar. Does that analogy make sense? – Dave Dec 1 '10 at 12:57
It's the exact same problem you see with PowerBuilder and the *.pbl files. – Dave Dec 1 '10 at 13:01
Sorry I should have clarified that I meant working in the same file but different sections of the code. If you are programming a PLC using RSLogix it has one file (.ACD) but this file holds the PLC configuration, code for different routines etc. If one programmer changes routine #1 and another changes routine #2 they will both return file.ACD and someone then needs to merge these. – Bart Dec 1 '10 at 14:18
Right. This is typical software development: if two people change the same file, somebody gets to do a merge. The only thing special about the problem being discussed is that merges happen often. OK, get a good merge tool. Is there another issue? – Ira Baxter Feb 6 '11 at 0:54
1  
Ira, I totally agree with you here but the tools available to PLC/SCADA programmers are not up to the same level as what I have seen for other development systems. As far as I know the only merge tool that you have is yourself, Rockwell do have a descent compare tool. – Bart Feb 6 '11 at 16:54
show 1 more comment

About rslogix5000 specifically, I have seen developers use a emulated PLC and make their changes online, the final product once developed is then put together with all the comments (as they are not contained in the PLC) and then commissioned. There are issues with changes that cannot be done online, such as AOIs. There are tools in place to stop two people editing the same logic online at once and to take ownership of sections, backups can be done in the form of uploads, but there isn't any way to track changes.

It is a messy problem, messier still for when you are maintaining a system as you want a .ACD that you can go online with, as unless you are somehow doing a diff with the RSLogix compare tool you just see unreadable machine code like "+|Éû³´¬ÙÆW׿™µ‚>Ù,"

The most common revision control I have seen (sadly) is just saving the the latest file, then taking a copy and adding the current date to the file name, like the recommended control.com post described.

share|improve this answer
Thanks for the response. This is no longer my problem, but I'm still definitely interested in possible solutions. I've had this problem before with PowerBuilder, and it was just as ugly. – Dave Jun 10 '11 at 13:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.