Ejemplo n.º 1
0
 private void SetUpperRadioMode(CurrentFw190RadioMode currentFw190RadioMode)
 {
     try
     {
         _currentUpperRadioMode = currentFw190RadioMode;
     }
     catch (Exception ex)
     {
         logger.Error(ex);
     }
 }
 private void SetLowerRadioMode(CurrentFw190RadioMode currentFw190RadioMode)
 {
     try
     {
         _currentLowerRadioMode = currentFw190RadioMode;
         //If NOUSE then send next round of data to the panel in order to clear the LCD.
         //_sendNextRoundToPanel = true;catch (Exception ex)
     }
     catch (Exception ex)
     {
         Common.LogError(ex);
     }
 }
Ejemplo n.º 3
0
 private void SetUpperRadioMode(CurrentFw190RadioMode currentFw190RadioMode)
 {
     try
     {
         Common.DebugP("Entering Fw 190 Radio SetUpperRadioMode()");
         Common.DebugP("Setting upper radio mode to " + currentFw190RadioMode);
         _currentUpperRadioMode = currentFw190RadioMode;
     }
     catch (Exception ex)
     {
         Common.LogError(83014, ex);
     }
     Common.DebugP("Leaving Fw 190 Radio SetUpperRadioMode()");
 }
Ejemplo n.º 4
0
 private void SetLowerRadioMode(CurrentFw190RadioMode currentFw190RadioMode)
 {
     try
     {
         Common.DebugP("Entering Fw 190 Radio SetLowerRadioMode()");
         Common.DebugP("Setting lower radio mode to " + currentFw190RadioMode);
         _currentLowerRadioMode = currentFw190RadioMode;
         //If NOUSE then send next round of data to the panel in order to clear the LCD.
         //_sendNextRoundToPanel = true;catch (Exception ex)
     }
     catch (Exception ex)
     {
         Common.LogError(83015, ex);
     }
     Common.DebugP("Leaving Fw 190 Radio SetLowerRadioMode()");
 }