}
if (!desc) {
// Nothing found. This is nothing to worry about, but log the key to stderr
- if (event == MIDI_PITCH) g_print("Unassigned PitchBend Value=%d\n", val);
- if (event == MIDI_NOTE ) g_print("Unassigned Key Note=%d Val=%d\n", note, val);
- if (event == MIDI_CTRL ) g_print("Unassigned Controller Ctl=%d Val=%d\n", note, val);
+ if (event == MIDI_PITCH) g_print("%s: Unassigned PitchBend Value=%d\n",__FUNCTION__, val);
+ if (event == MIDI_NOTE ) g_print("%s: Unassigned Key Note=%d Val=%d\n",__FUNCTION__, note, val);
+ if (event == MIDI_CTRL ) g_print("%s: Unassigned Controller Ctl=%d Val=%d\n",__FUNCTION__, note, val);
}
}
switch(type) {
case MIDI_KEY:
- //
- // CW_LEFT, CW_RIGHT, and CW_KEYER have to be handled with
- // minimum latency, so these are not put to the GTK idle queue
- // but rather handled immediately
- //
if(action==CW_LEFT || action==CW_RIGHT) {
#ifdef LOCALCW
- keyer_event(action==CW_LEFT,val);
+ keyer_event(action==CW_LEFT,val);
#else
- g_print("MIDI CW key but compiled without LOCALCW\n");
+ g_print("MIDI CW key but compiled without LOCALCW\n");
#endif
} else if (action == CW_KEYER) {
//
- // This is a CW key-up/down which uses functions from the keyer
- // that by-pass the interrupt-driven standard action.
- // It is intended to
- // be used with external keyers that send key-up/down messages via
- // MIDI using this command.
- //
- // NO BREAK-IN! The keyer has to take care of sending MIDI PTT
- // on/off messages at appropriate times, or the operator has to
- // manually engage/disengage PTT
- //
- // Since this if for immediate key-down, it does not rely on LOCALCW
+ // hard "key-up/down" action WITHOUT break-in
+ // intended for MIDI keyers which take care of PTT themselves
//
if (val != 0 && cw_keyer_internal == 0) {
cw_key_down=960000; // max. 20 sec to protect hardware
cw_key_down=0;
cw_key_up=0;
}
- } else {
- a=g_new(PROCESS_ACTION,1);
- a->action=action;
- a->mode=val?PRESSED:RELEASED;
- g_idle_add(process_action,a);
+ } else {
+ a=g_new(PROCESS_ACTION,1);
+ a->action=action;
+ a->mode=val?PRESSED:RELEASED;
+ g_idle_add(process_action,a);
}
break;
case MIDI_KNOB: