Esempio n. 1
0
 private void onTransceiverStateResponse(TransceiverState details)
 {
     Frequency = details.Frequency;
     Mode      = details.Mode.ToMode();
     onKeyUp_Command(Callsign);
     KeyerVisibility = Mode == Mode.CW ? Visibility.Visible : Visibility.Collapsed;
 }
 private void onTransceiverStateResponse(TransceiverState details)
 {
     transceiverInitialized = true;
     band     = details.Band;
     xcvrMode = details.Mode;
     mode     = xcvrMode.ToMode();
 }
Esempio n. 3
0
 private void onTransceiverStateChanged(TransceiverState xcvrState)
 {
     onModeChanged(xcvrState.Mode.ToMode());
 }
Esempio n. 4
0
 private void onTransceiverStateResponse(TransceiverState obj)
 {
     mode      = obj.Mode.ToMode();
     frequency = obj.Frequency;
 }