Renamed file for ST's counterpart detection.

This commit is contained in:
Francois Best 2013-06-28 09:09:47 +02:00
parent 7941c69383
commit 287b3625db
2 changed files with 5 additions and 1 deletions

View File

@ -18,6 +18,10 @@
BEGIN_MIDI_NAMESPACE
/*! \brief The main class for MIDI handling.
It is templated over the type of serial port to provide abstraction from
the hardware interface, meaning you can use HardwareSerial, SoftwareSerial
or ak47's Uart classes. The only requirement is that the class implements
the begin, read, write and available methods.
*/
template<class SerialPort>
class MidiInterface
@ -232,4 +236,4 @@ END_MIDI_NAMESPACE
// -----------------------------------------------------------------------------
#include "midi_Inline.hpp"
#include "MIDI.hpp"