Skip to content

Commit

Permalink
TODO: configurable external clock input
Browse files Browse the repository at this point in the history
  • Loading branch information
djphazer committed Dec 18, 2024
1 parent 974e315 commit c1056b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion software/src/applets/ClockSetup.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class ClockSetup : public HemisphereApplet {

// The ClockSetup controller handles MIDI Clock and Transport Start/Stop
void Controller() {
bool clock_sync = OC::DigitalInputs::clocked<OC::DIGITAL_INPUT_1>();
bool clock_sync = HS::frame.clocked[0]; // TODO: configurable ExtClk input

// MIDI Clock is filtered to 2 PPQN
if (frame.MIDIState.clock_q) {
Expand Down
2 changes: 1 addition & 1 deletion software/src/applets/ClockSetupT4.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class ClockSetup : public HemisphereApplet {

// The ClockSetup controller handles MIDI Clock and Transport Start/Stop
void Controller() {
bool clock_sync = OC::DigitalInputs::clocked<OC::DIGITAL_INPUT_1>();
bool clock_sync = HS::frame.clocked[0]; // TODO: configurable ExtClk input

// MIDI Clock is filtered to 2 PPQN
if (frame.MIDIState.clock_q) {
Expand Down

0 comments on commit c1056b9

Please sign in to comment.