diff --git a/Software/Gravity/Gravity.ino b/Software/Gravity/Gravity.ino index a60e059..3e60b2d 100644 --- a/Software/Gravity/Gravity.ino +++ b/Software/Gravity/Gravity.ino @@ -6,7 +6,7 @@ #include #include -#define VERSION "V:1.1.1" +#define VERSION "V:1.1.2b" byte memCode = 'D'; //Change to different letter if you changed the data structure @@ -100,7 +100,6 @@ byte currentStep = 0; byte stepNumSelected = 0; bool *patternToEdit; - unsigned int channelPulseCount[6]; unsigned int channelPulsesPerCycle[6]; byte sixteenthPulseCount = 0; @@ -529,7 +528,7 @@ void calculateBPMTiming() { pulsePeriod = 600000 / (calcbpm * PPQN); } else if (masterClockMode == 1 && extClockPPQN == 1) { //for ext 1/16 clock (hardcoded) - pulsePeriod = (newExtPulseTime - lastExtPulseTime) / 6; + pulsePeriod = ((newExtPulseTime - lastExtPulseTime) * 10) / 6; } }