GPIO_INCLUDE=GPIO
# uncomment if level control (power output) is software based
-# LEVEL_CTRL=SW_LEVEL_CTRL
+LEVEL_CTRL=SW_LEVEL_CTRL
# uncomment the line below to include Pure Signal support
#PURESIGNAL_INCLUDE=PURESIGNAL
# uncomment the line below to include MIDI support
-MIDI_INCLUDE=MIDI
+# MIDI_INCLUDE=MIDI
# uncomment the line below to include USB Ozy support
# USBOZY_INCLUDE=USBOZY
// NewProtocol: rely on periodically sent HighPrio packets
#ifdef LOCALCW
keyer_update();
+#ifdef MIDI
midi_keyer_update();
#endif
+#endif
//
// speed and side tone frequency are displayed in the VFO bar
//
keyer_update();
}
+#ifdef MIDI
if (cw_keyer_midi == 1) {
midi_keyer_update();
}
#endif
+#endif
#ifdef CLIENT_SERVER
if (!radio_is_remote) {
value = getProperty("cw_keyer_speed");
if (value) {
cw_keyer_speed = atoi(value);
+#ifdef MIDI
// if we have the midikeyer, set the speed to this value
midi_keyer_update();
+#endif
}
value = getProperty("cw_keyer_mode");
if (value)
cw_keyer_speed = speed;
#ifdef LOCALCW
keyer_update();
+#ifdef MIDI
midi_keyer_update();
+#endif
#endif
vfo_update();
}