Skip to content

Commit

Permalink
MIDI clock takes no args.
Browse files Browse the repository at this point in the history
  • Loading branch information
DatanoiseTV authored Oct 13, 2024
1 parent 14d6aaf commit 1ba5a2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/midi_input_usb.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class MIDIInputUSB {
std::function<void(uint16_t, uint8_t)> MIDIPitchBendCallback = nullptr;
std::function<void(uint8_t, uint8_t)> MIDIAftertouchCallback = nullptr;
std::function<void(uint8_t, uint8_t)> MIDIChannelPressureCallback = nullptr;
std::function<void(uint8_t, uint8_t)> MIDIClockCallback = nullptr;
std::function<void()> MIDIClockCallback = nullptr;

// Helper function for parsing pitch bend data
uint16_t parsePitchBend(const uint8_t* packet);
Expand Down

0 comments on commit 1ba5a2a

Please sign in to comment.