SERIAL INTERFACE DEVELOPERS GUIDE 
  /* Cal-flag Settings data */ 
 UWord16  calFlagRefs;  /* 1 Word */ 
// coldRef:8;    /* Cold Ref Setting, (Bits 0 - 7) */ 
  // hotRef:8;    /* Hot Ref Setting, (Bits 8 - 15) */ 
  /* FPA Type Information */ 
 UWord16  fpaInfo;   /* 1 Word */ 
// fpaType:4;    /* FPA Type Identifier (Bits 0 - 3) */ 
  // fpaSubType:4;    /* FPA Sub-Type Identifier (Bits 4 - 7) */ 
  // retRangeEn:1;    /* Ranging Reticle Enable (Bit 8) */ 
  // notUsed:6;    /* Currently not used (Bits 9 - 14) */ 
  // lockMemMirror:1;  /* Set if memory unlocked (Bit 15) */ 
  /* Filtered ADC Chnl A Result Values (A0, A1, A2, A3) */ 
 UWord16  adcAFiltered[4];  // 4 Words 
  /* Filtered ADC Chnl B Result Values (B0, B1, B2, B3) */ 
 UWord16  adcBFiltered[4];  // 4 Words 
  /* Current Button Panel Status */ 
 BTN_PANEL  btnPanel;   // 2 Words 
}; 
typedef struct _CAMERA_CONFIG CAMERA_CONFIG, *PTR_CAMERA_CONFIG; 
45