QUOTE (bill n tn @ Jul 2 2009, 10:51 AM)

anyone know if there is a list of the status files for compact and control logix with their descriptions? is this something I will have to gather in the different manuals?
ControlLogix family controllers don't have pre-defined Status files like PLC-5 and SLC-500 controllers. There are a handful of pre-defined tags, like "S:FS" for first scan and flags for overflow, etc.
There's a lot of controller status and diagnostic data, in fact probably more than the SLC/PLC. But it's not automatically made available to the User program.
Instead, two special instructions called Get System Variable and Set System Variable are used (GSV and SSV). The Help file has an excellent reference under "GSV/SSV Objects".
For example, if you want to read the scantime for the continuous task, in the SLC you'd reference S:3 or S:35. In the ControlLogix, you execute a GSV instruction to read the scantime of the current task.
It takes a little more labor, but considering how seldom I access the S: file in my program in an SLC, I can see why it's on-demand in the ControlLogix.
Do you have a specific Status function you're trying to access ?
I need to know if the processor has lost power (rebooted). I have a machine that has some tasks that need to be done after the power has been cycled before it will run properly and I was thinking there could be a status file
to show this.