Exemplo n.º 1
0
 public AutoRestartRxEventArg(AutoRestartRxEnum value)
 {
     this.value = value;
 }
Exemplo n.º 2
0
 public void SetAutoRestartRxOn(AutoRestartRxEnum value)
 {
     try
     {
         lock (syncThread)
             registers["RegSyncConfig"].Value = (uint)(byte)((uint)(byte)((uint)(byte)registers["RegSyncConfig"].Value & 63U) | (uint)(byte)((uint)(byte)value << 6));
     }
     catch (Exception ex)
     {
         OnError((byte)1, ex.Message);
     }
 }
Exemplo n.º 3
0
 private void OnAutoRestartRxChanged(AutoRestartRxEnum value)
 {
     if (this.AutoRestartRxChanged == null)
     return;
       this.AutoRestartRxChanged((object) this, new AutoRestartRxEventArg(value));
 }
Exemplo n.º 4
0
 public AutoRestartRxEventArg(AutoRestartRxEnum value)
 {
     this.value = value;
 }