From 025702b2610ea98318b59cba3038af7c34db606d Mon Sep 17 00:00:00 2001 From: c vw Date: Wed, 24 Feb 2021 15:33:08 +0100 Subject: [PATCH] Ignore any incoming MIDI messages in the first second after startup --- midi2.c | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/midi2.c b/midi2.c index f6caaca..8b5dc80 100644 --- a/midi2.c +++ b/midi2.c @@ -18,6 +18,9 @@ #include "midi.h" +static double midi_startup_time; +static int midi_wait_startup=0; + struct cmdtable MidiCommandsTable; void NewMidiEvent(enum MIDIevent event, int channel, int note, int val) { @@ -30,10 +33,25 @@ void NewMidiEvent(enum MIDIevent event, int channel, int note, int val) { struct timespec ts; // used in debug code double now; // used in debug code -//Un-comment the next three lines to get a log of incoming MIDI events with milli-second time stamps +//Un-comment next three lines to get a log of incoming MIDI messages //clock_gettime(CLOCK_MONOTONIC, &ts); //now=ts.tv_sec + 1E-9*ts.tv_nsec; //g_print("%s:%12.3f:EVENT=%d CHAN=%d NOTE=%d VAL=%d\n",__FUNCTION__,now,event,channel,note,val); + + // + // the midi_wait_startup/midi_startup_time mechanism takes care that in the first + // second after registering a MIDI device, all incoming MIDI messages are just discarded. + // This has been introduced since sometimes "old" MIDI messages are lingering around in the + // the system and get delivered immediately after registering the MIDI device. + // The midi_wait_startup variable takes care that we do not check the clock again and again + // after the first second. + // + if (midi_wait_startup) { + clock_gettime(CLOCK_MONOTONIC, &ts); + now=ts.tv_sec + 1E-9*ts.tv_nsec; + if (now < midi_startup_time + 1.0) return; + midi_wait_startup=0; + } if (event == MIDI_EVENT_PITCH) { desc=MidiCommandsTable.pitch; } else { @@ -222,6 +240,7 @@ void MIDIstartup() { enum MIDIevent event; int i; char c; + struct timespec ts; for (i=0; i<128; i++) MidiCommandsTable.desc[i]=NULL; MidiCommandsTable.pitch=NULL; @@ -262,6 +281,9 @@ void MIDIstartup() { while (cq > cp+7 && (*cq == ' ' || *cq == '\t')) cq--; *(cq+1)=0; //fprintf(stderr,"MIDI:REG:>>>%s<<<\n",cp+7); + midi_wait_startup=1; + clock_gettime(CLOCK_MONOTONIC, &ts); + midi_startup_time=ts.tv_sec + 1E-9*ts.tv_nsec; register_midi_device(cp+7); continue; // nothing more in this line } -- 2.45.2