adding comment section
This commit is contained in:
parent
e292118e8e
commit
e78c51a1d9
12
src/MIDI.h
12
src/MIDI.h
|
|
@ -240,16 +240,21 @@ public:
|
||||||
inline void turnThruOff();
|
inline void turnThruOff();
|
||||||
inline void setThruFilterMode(Thru::Mode inThruFilterMode);
|
inline void setThruFilterMode(Thru::Mode inThruFilterMode);
|
||||||
|
|
||||||
inline void UpdateLastSentTime();
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void thruFilter(byte inChannel);
|
void thruFilter(byte inChannel);
|
||||||
|
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
// MIDI Parsing
|
||||||
|
|
||||||
private:
|
private:
|
||||||
bool parse();
|
bool parse();
|
||||||
inline void handleNullVelocityNoteOnAsNoteOff();
|
inline void handleNullVelocityNoteOnAsNoteOff();
|
||||||
inline bool inputFilter(Channel inChannel);
|
inline bool inputFilter(Channel inChannel);
|
||||||
inline void resetInput();
|
inline void resetInput();
|
||||||
|
inline void UpdateLastSentTime();
|
||||||
|
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
// Transport
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Transport* getTransport() { return &mTransport; };
|
Transport* getTransport() { return &mTransport; };
|
||||||
|
|
@ -257,6 +262,9 @@ public:
|
||||||
private:
|
private:
|
||||||
Transport& mTransport;
|
Transport& mTransport;
|
||||||
|
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
// Internal variables
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Channel mInputChannel;
|
Channel mInputChannel;
|
||||||
StatusByte mRunningStatus_RX;
|
StatusByte mRunningStatus_RX;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue