private void SetUpperRadioMode(CurrentBf109RadioMode currentBf109RadioMode)
 {
     try
     {
         _currentUpperRadioMode = currentBf109RadioMode;
     }
     catch (Exception ex)
     {
         Common.LogError(ex);
     }
 }
 private void SetLowerRadioMode(CurrentBf109RadioMode currentBf109RadioMode)
 {
     try
     {
         _currentLowerRadioMode = currentBf109RadioMode;
         //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);
     }
 }
Esempio n. 3
0
 private void SetUpperRadioMode(CurrentBf109RadioMode currentBf109RadioMode)
 {
     try
     {
         Common.DebugP("Entering Bf 109 Radio SetUpperRadioMode()");
         Common.DebugP("Setting upper radio mode to " + currentBf109RadioMode);
         _currentUpperRadioMode = currentBf109RadioMode;
     }
     catch (Exception ex)
     {
         Common.LogError(82014, ex);
     }
     Common.DebugP("Leaving Bf 109 Radio SetUpperRadioMode()");
 }
Esempio n. 4
0
 private void SetLowerRadioMode(CurrentBf109RadioMode currentBf109RadioMode)
 {
     try
     {
         Common.DebugP("Entering Bf 109 Radio SetLowerRadioMode()");
         Common.DebugP("Setting lower radio mode to " + currentBf109RadioMode);
         _currentLowerRadioMode = currentBf109RadioMode;
         //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(82015, ex);
     }
     Common.DebugP("Leaving Bf 109 Radio SetLowerRadioMode()");
 }