Skip to content

Commit ff3476a

Browse files
committed
Update rtpMIDI_Parser_CommandSection.hpp
1 parent 7af5d18 commit ff3476a

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/rtpMIDI_Parser_CommandSection.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -233,10 +233,10 @@ parserReturn decodeMidiSysEx(RtpBuffer_t &buffer, size_t &consumed)
233233
consumed++;
234234
auto octet = buffer[i++];
235235

236-
Serial.print("0x");
237-
Serial.print(octet < 16 ? "0" : "");
238-
Serial.print(octet, HEX);
239-
Serial.print(" ");
236+
AM_DBG("0x");
237+
AM_DBG(octet < 16 ? "0" : "");
238+
AM_DBG(octet, HEX);
239+
AM_DBG(" ");
240240

241241
if (octet == MIDI_NAMESPACE::MidiType::SystemExclusiveEnd) // Complete message
242242
{

0 commit comments

Comments
 (0)