adding comment section

This commit is contained in:
lathoub 2020-03-22 21:23:31 +01:00
parent e292118e8e
commit e78c51a1d9
1 changed files with 10 additions and 2 deletions

View File

@ -240,16 +240,21 @@ public:
inline void turnThruOff();
inline void setThruFilterMode(Thru::Mode inThruFilterMode);
inline void UpdateLastSentTime();
private:
void thruFilter(byte inChannel);
// -------------------------------------------------------------------------
// MIDI Parsing
private:
bool parse();
inline void handleNullVelocityNoteOnAsNoteOff();
inline bool inputFilter(Channel inChannel);
inline void resetInput();
inline void UpdateLastSentTime();
// -------------------------------------------------------------------------
// Transport
public:
Transport* getTransport() { return &mTransport; };
@ -257,6 +262,9 @@ public:
private:
Transport& mTransport;
// -------------------------------------------------------------------------
// Internal variables
private:
Channel mInputChannel;
StatusByte mRunningStatus_RX;