From 882f164a2423f4ad5e36e27f2616a5b648d8578f Mon Sep 17 00:00:00 2001 From: Peter Cai Date: Fri, 11 Jun 2021 12:56:34 +0800 Subject: [PATCH] reduce MIDI_CMD_INTERVAL_MIN to 1ms --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 514c851..29cc2fe 100644 --- a/main.cpp +++ b/main.cpp @@ -7,7 +7,7 @@ // Minimal interval between reading two chunks of MIDI data // This improves frequency accuracy by throttling non-synthesizing actions -#define MIDI_CMD_INTERVAL_MIN 15 * 1000 // 15ms +#define MIDI_CMD_INTERVAL_MIN 1000 // 1ms using namespace midi;