Line data Source code
1 : #include "MIDI_Parser.hpp" 2 : 3 : BEGIN_CS_NAMESPACE 4 : 5 : #if !IGNORE_SYSEX 6 : 7 : // TODO 8 : 9 : #endif 10 : 11 459 : bool MIDI_Parser::isStatus(uint8_t data) { 12 459 : return data & (1 << 7); // TODO 13 : } 14 : 15 94 : bool MIDI_Parser::isData(uint8_t data) { return (data & (1 << 7)) == 0; } 16 : 17 33 : ChannelMessage MIDI_Parser::getChannelMessage() { return midimsg; } 18 : 19 : END_CS_NAMESPACE