NOP instruction equivalent?

I'm fairly new to Control Expert and haven't seen an instruction like this.

You could substitute it with an instruction call that has no data side effect like moving a tag value into itself: MOV Tag Tag.

You could also use the EFB Toolkit to roll your own NOP elementary instruction. It's not a bad idea and would be easy to do.
 
What I always do on the SLC's and other platforms is add 3 tags for troubleshooting



B3:0/0 = AFI, unlatch it at the start of every scan
B3:0/1 = TRUE, latch it every scan
B3:0/15 = NOP



To make a rung false add XIC AFI
To branch around an instruction XIC TRUE
To use the NOP just OTE NOP
 
Is there an equivalent Rockwell PLC NOP instruction that is available for the M340 M580 Schneider PLC?

I am using a Schneider PLC and I am trying to replace an existing coil with an operation that will not energize or de-energize that coil but I want to leave the rung in place as a placeholder with the existing conditions to set it. In Rockwell world I would just replace the coil with an NOP. I don't think my question came though clearly - I apologize and I hope this describes it better.
 
Last edited:
I am using a Schneider PLC and I am trying to replace an existing coil with an operation that will not energize or de-energize that coil but I want to leave the rung in place as a placeholder with the existing conditions to set it. In Rockwell world I would just replace the coil with an NOP.
Presumably just temporarily? Otherwise, what would you do with any XIO or XIC instructions with the same address as the coil instruction?
You could accomplish the same thing by readdressing the coil instruction to an unused address.
Not sure about Schneider, but in a GE/Emerson PLC you could apply a force to the coil without changing its state.
 

Similar Topics

Good evening , I was looking thru some Rockwell Automation programs , and took notice in some programs , UDT’s , AOI’s , etc. the NOP...
Replies
13
Views
3,179
Can someone please explain the NOP instruction. What happens when you have a routine and the first rung only shows a NOP output instruction with...
Replies
29
Views
23,130
Hi guys! I was wondering why I've seen some guys put a lot of NOP in their STL code. For example: CALL FC4 NOP 0 What is the purpose of this...
Replies
12
Views
3,646
I have read the Instruction help on this. I am still not clear or sure on why this would even be used. I see this a lot on Rung 0 inside of the...
Replies
5
Views
4,491
Anyone know if there is an equivalent to the NOP instruction in Logix 500? I like to use them in my Logix 5000 for program organization and...
Replies
3
Views
4,436
Back
Top Bottom