Enable/disable Ethernet Modules

Daniel_LeRoy

Lifetime Supporting Member
Join Date
May 2011
Location
USA
Posts
103
Running a CompactLogix L23E QB1B, with multiple General Ethernet modules (one being an iVU Plus scanner that you guys helped me get working, Thanks again)

My Question;
Is there anyway to switch on and off Ethernet modules so that logix is no longer looking for them. Reason why I ask is that I have three of almost the exact programs but with three different modules that connect to them (different I/P address, and I/O). If I could enable or disable them with a switch I could combine them into one program to maintain and update. I've been digging around all day and haven't come up with anything clever. Anyone have any hot tips or any ever thought about doing this?


** Side Note: Hope everyone has a HAPPY THANKSGIVING!!! Travel safe everyone ** 🍻
 
In general "completely the same except different" machines with a universal program are more hassle than they are worth.

That being said, what you're looking for is the GSV and SSV instructions for the Module object. You can Inhibit and un-Inhibit a connection using the SSV instruction.

The details are in the User Manual or the Online Help... I don't have either at my fingertips right now.
 
D*mn,
Ken beat me to it. Anyway, attached is an excerpt from 1756-RM003L-EN, page 197, which describes the how to inhibit and de-inhibit a module.
Basically, the way that I have done it, you need to set up a tag of type INT. Call it, "My_Inhibit_INT". Then you need to either set or clear bit two of this tag when inhibiting or enabling the module.

Your logic could look something like this:

Code:
XIC Eth_Disable_SW ONS One_Shot1 OTL My_Inhibit_INT.2 SSV Module My_Ethernet_Card Mode My_Inhibit_INT

XIO Eth_Disable_SW ONS One_Shot2 OTU My_Inhibit_INT.2 SSV Module My_Ethernet_Card Mode My_Inhibit_INT
Good luck with your project.

Cheers,
Dustin

🍻

ModuleInhibitSSV.jpg
 
Thanks guys. Every interesting. I'm writing some test logic right now. Thanks for the good advice Ken, I understand the possible complications.

:)
 

Similar Topics

I have a few cells with v28 that have ssv for program enable/disable. I copied the logic to replicate this on other, slightly older cells with...
Replies
2
Views
1,668
Can this be done based on a pre-selected condition while the PLC is in Run mode? (Logix 5K V20 - Compactlogix L43 CPU)
Replies
17
Views
5,087
I am an automation technician working on Kinetix 300 drives with Motionview Onboard. We have two different setups; - Controllogix 5000 to the...
Replies
4
Views
6,316
Appreciate any help here. My design ( with help here on this site) is for a vertically operating gate. Up ( opened) and down (closed). Limit...
Replies
19
Views
4,590
I have two PLC's networked together over an PN/IE_1 network. They both have separate IP addresses and are declared as such in the Device &...
Replies
6
Views
7,458
Back
Top Bottom