From afac75c28593bdee1c5d3d2f4f3c01539d8bc028 Mon Sep 17 00:00:00 2001 From: midilab Date: Mon, 19 Mar 2018 23:27:43 -0300 Subject: [PATCH] Update README.md To reflect the last hotfix. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8a51eff..0b758cf 100755 --- a/README.md +++ b/README.md @@ -148,7 +148,8 @@ void sendMidiMessage(uint8_t command, uint8_t byte1, uint8_t byte2) // The callback function wich will be called by uClock each Pulse of 16PPQN clock resolution. Each call represents exactly one step. void ClockOut16PPQN(uint32_t * tick) { - uint16_t step, length; + uint16_t step; + uint16_t length = NOTE_LENGTH; // get actual step. _step = *tick % _step_length; @@ -165,7 +166,6 @@ void ClockOut16PPQN(uint32_t * tick) length = NOTE_LENGTH + (i * 6); break; } else if ( _sequencer[step].rest == false ) { - length = NOTE_LENGTH; break; } } @@ -274,4 +274,4 @@ void loop() //processYourLeds(); //processYourPots(); } -``` \ No newline at end of file +```