The logic for determining the DECOM status words on the frontend is
handled by the CDS. It looks like you are correct that it will find
them by their common names and pass the resulting words onto the
opconsole.
Currently the OpConsole will determine the color based on the
following conditions for an Omega DataSource:
1) if the entire parameter is 0(or null) it will turn gray and go into
an ignore state (see right click menu)
2) if both major and minor frames are in sync the state goes green,
otherwise red.
a) major frame sync is determine by the value of bits 4 to 8; if
only bit 4 is on major frame is in sync
b) minor frame sync is determined by the value of bits 2 to 3; if
only bit 2 is on minor frame is in sync
frameSyncStat = (tppDecomStatus & 0x08) >>3;
subFrameSyncStat = (tppDecomStatus & 0x02) >> 1;
I believe this is slated to be changed for 7.0 to only display the
iadsDecomStatus information.
> > - Show quoted text -- Hide quoted text -