Skip to content

Commit

Permalink
Remove trailing spaces
Browse files Browse the repository at this point in the history
Signed-off-by: Greg Burns <[email protected]>
  • Loading branch information
GregBurns committed Feb 20, 2024
1 parent 51d9208 commit 1216108
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions examples/MIDI_UART_Input/MIDI_UART_Input.cpp
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/** Example of setting reading MIDI Input via UART
*
*
*
*
* This can be used with any 5-pin DIN or TRS connector that has been wired up
* to one of the UART Rx pins on Daisy.
* This will use D14 as the UART 1 Rx pin
*
*
* This example will also log incoming messages to the serial port for general MIDI troubleshooting
*/
#include "daisy_seed.h"
Expand All @@ -14,7 +14,7 @@ using namespace daisy;

/** Fills string with string representation of MidiEvent::Type
* str needs to be at least 16 bytes long to store the data
* TODO: Move this into MIDI lib or something
* TODO: Move this into MIDI lib or something
*/
void GetMidiTypeAsString(MidiEvent& msg, char* str)
{
Expand Down Expand Up @@ -69,7 +69,7 @@ int main(void)
{
MidiEvent msg = midi.PopEvent();

/** Handle messages as they come in
/** Handle messages as they come in
* See DaisyExamples for some examples of this
*/
switch(msg.type)
Expand Down Expand Up @@ -112,4 +112,4 @@ int main(void)
}
}
}
}
}

0 comments on commit 1216108

Please sign in to comment.