Пример #1
0
 public InvtryOpEventArgs(InvtryOpStatus tempStatus, Int16 amb, Int16 xcvr, Int16 pwrAmp)
 {
     status   = tempStatus;
     AmbTemp  = amb;
     XcvrTemp = xcvr;
     PATemp   = pwrAmp;
 }
Пример #2
0
 public InvtryOpEventArgs(InvtryOpStatus timeElapsed, UInt32 msElapsed)
 {
     status      = timeElapsed;
     ElapsedTime = msElapsed;
 }
Пример #3
0
 public InvtryOpEventArgs(InvtryOpStatus update, String msg)
 {
     this.msg = msg;
     status   = update;
 }
Пример #4
0
        public readonly UInt32 ElapsedTime; // ms passed since COMMAND begin

        public InvtryOpEventArgs(InvtryOpStatus update)
        {
            this.msg = null;
            status   = update;
        }