From 326e893448a7c6bd8d75fe9a3ddb4979fbf58e80 Mon Sep 17 00:00:00 2001 From: Ben Rosenbach Date: Thu, 26 May 2022 22:55:01 -0400 Subject: [PATCH] [Sequence5] - Change way that we prevent clock on reset so held gates on reset don't prevent the sequencer from advancing --- software/o_c_REV/HEM_Sequence5.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/software/o_c_REV/HEM_Sequence5.ino b/software/o_c_REV/HEM_Sequence5.ino index 6cf7b5db2..1f5aae362 100644 --- a/software/o_c_REV/HEM_Sequence5.ino +++ b/software/o_c_REV/HEM_Sequence5.ino @@ -46,9 +46,9 @@ public: int play_note = note[step] + 60 + transpose; play_note = constrain(play_note, 0, 127); - if (Clock(0)) StartADCLag(); + if (Clock(0) && !Clock(1)) StartADCLag(); - if (EndOfADCLag() && !Gate(1)) { + if (EndOfADCLag()) { Advance(step); if (step == 0) ClockOut(1); play = 1;