moved #version to MIDI.h
#version of the library does not belong in general MIDI definitions (making midi_Defs.h as generic as possible - usable on other platforms)
This commit is contained in:
parent
0f74f054b6
commit
e292118e8e
|
|
@ -38,6 +38,11 @@
|
||||||
|
|
||||||
BEGIN_MIDI_NAMESPACE
|
BEGIN_MIDI_NAMESPACE
|
||||||
|
|
||||||
|
#define MIDI_LIBRARY_VERSION 0x050000
|
||||||
|
#define MIDI_LIBRARY_VERSION_MAJOR 5
|
||||||
|
#define MIDI_LIBRARY_VERSION_MINOR 0
|
||||||
|
#define MIDI_LIBRARY_VERSION_PATCH 0
|
||||||
|
|
||||||
/*! \brief The main class for MIDI handling.
|
/*! \brief The main class for MIDI handling.
|
||||||
It is templated over the type of serial port to provide abstraction from
|
It is templated over the type of serial port to provide abstraction from
|
||||||
the hardware interface, meaning you can use HardwareSerial, SoftwareSerial
|
the hardware interface, meaning you can use HardwareSerial, SoftwareSerial
|
||||||
|
|
|
||||||
|
|
@ -38,11 +38,6 @@ typedef uint8_t byte;
|
||||||
|
|
||||||
BEGIN_MIDI_NAMESPACE
|
BEGIN_MIDI_NAMESPACE
|
||||||
|
|
||||||
#define MIDI_LIBRARY_VERSION 0x050000
|
|
||||||
#define MIDI_LIBRARY_VERSION_MAJOR 5
|
|
||||||
#define MIDI_LIBRARY_VERSION_MINOR 0
|
|
||||||
#define MIDI_LIBRARY_VERSION_PATCH 0
|
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------
|
// -----------------------------------------------------------------------------
|
||||||
|
|
||||||
#define MIDI_CHANNEL_OMNI 0
|
#define MIDI_CHANNEL_OMNI 0
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue