Esempio n. 1
0
 private void ComboBoxPort_SelectedIndexChanged(object sender, EventArgs e)
 {
     transceiverController.disconnect();
     if (comboBoxPort.SelectedIndex != -1)
     {
         transceiverController.config.updateFromForm(this);
         transceiverController.connect();
     }
 }
Esempio n. 2
0
 private void initServices()
 {
     if (config.transceiverController.transceiverType != 0)
     {
         transceiverController.connect();
     }
     if (config.watchAdifLog)
     {
         adifLogWatcher.start(config.watchAdifLogPath);
     }
     else
     {
         adifLogWatcher.stop();
     }
 }