From cdda641ccc31ebf34063d5e3edcd0a5a9499a5d3 Mon Sep 17 00:00:00 2001 From: midilab Date: Tue, 3 Nov 2020 14:43:57 -0500 Subject: [PATCH] change default drift to 1 instead of 11 - fix mistaken default value --- src/uClock.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/uClock.cpp b/src/uClock.cpp index 9143ed0..02a6764 100755 --- a/src/uClock.cpp +++ b/src/uClock.cpp @@ -145,13 +145,13 @@ static inline uint16_t clock_diff(uint16_t old_clock, uint16_t new_clock) uClockClass::uClockClass() { // some tested values - // 11 is good for native 31250bps midi interface + // 1 is good for native 31250bps midi interface // 4 is good for usb-to-midi hid on leonardo // (6, 1) is good on teensy lc usb midi // internal drift is used to calibrate master clock - internal_drift = 11; + internal_drift = 1; // internal drift is used to calibrate slave clock - external_drift = 11; + external_drift = 1; tempo = 120; pll_x = 220; start_timer = 0;