private void SetUpperRadioMode(CurrentP47DRadioMode currentP47DRadioMode)
 {
     try
     {
         _currentUpperRadioMode = currentP47DRadioMode;
     }
     catch (Exception ex)
     {
         logger.Error(ex);
     }
 }
 private void SetLowerRadioMode(CurrentP47DRadioMode currentP47DRadioMode)
 {
     try
     {
         _currentLowerRadioMode = currentP47DRadioMode;
         // 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)
     {
         logger.Error(ex);
     }
 }