added Platform class to abstract millis()

This commit is contained in:
lathoub 2020-03-05 19:58:49 +01:00
parent fc752bc834
commit 1325c23329
3 changed files with 181 additions and 141 deletions

View File

@ -28,6 +28,7 @@
#pragma once #pragma once
#include "midi_Defs.h" #include "midi_Defs.h"
#include "midi_Platform.h"
#include "midi_Settings.h" #include "midi_Settings.h"
#include "midi_Message.h" #include "midi_Message.h"
@ -43,11 +44,12 @@ the hardware interface, meaning you can use HardwareSerial, SoftwareSerial
or ak47's Uart classes. The only requirement is that the class implements or ak47's Uart classes. The only requirement is that the class implements
the begin, read, write and available methods. the begin, read, write and available methods.
*/ */
template<class Encoder, class _Settings = DefaultSettings> template<class Encoder, class _Settings = DefaultSettings, class _Platform = DefaultPlatform>
class MidiInterface class MidiInterface
{ {
public: public:
typedef _Settings Settings; typedef _Settings Settings;
typedef _Platform Platform;
public: public:
inline MidiInterface(Encoder&); inline MidiInterface(Encoder&);

View File

@ -30,8 +30,8 @@
BEGIN_MIDI_NAMESPACE BEGIN_MIDI_NAMESPACE
/// \brief Constructor for MidiInterface. /// \brief Constructor for MidiInterface.
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline MidiInterface<Encoder, Settings>::MidiInterface(Encoder& inEncoder) inline MidiInterface<Encoder, Settings, Platform>::MidiInterface(Encoder& inEncoder)
: mEncoder(inEncoder) : mEncoder(inEncoder)
, mInputChannel(0) , mInputChannel(0)
, mRunningStatus_RX(InvalidType) , mRunningStatus_RX(InvalidType)
@ -69,8 +69,8 @@ inline MidiInterface<Encoder, Settings>::MidiInterface(Encoder& inEncoder)
This is not really useful for the Arduino, as it is never called... This is not really useful for the Arduino, as it is never called...
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline MidiInterface<Encoder, Settings>::~MidiInterface() inline MidiInterface<Encoder, Settings, Platform>::~MidiInterface()
{ {
} }
@ -82,8 +82,8 @@ inline MidiInterface<Encoder, Settings>::~MidiInterface()
- Input channel set to 1 if no value is specified - Input channel set to 1 if no value is specified
- Full thru mirroring - Full thru mirroring
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
void MidiInterface<Encoder, Settings>::begin(Channel inChannel) void MidiInterface<Encoder, Settings, Platform>::begin(Channel inChannel)
{ {
// Initialise the Serial port // Initialise the Serial port
mEncoder.begin(); mEncoder.begin();
@ -99,7 +99,7 @@ void MidiInterface<Encoder, Settings>::begin(Channel inChannel)
mCurrentNrpnNumber = 0xffff; mCurrentNrpnNumber = 0xffff;
mSenderActiveSensingActivated = Settings::UseSenderActiveSensing; mSenderActiveSensingActivated = Settings::UseSenderActiveSensing;
mLastMessageSentTime = millis(); mLastMessageSentTime = Platform::now();
mMessage.valid = false; mMessage.valid = false;
mMessage.type = InvalidType; mMessage.type = InvalidType;
@ -130,8 +130,8 @@ void MidiInterface<Encoder, Settings>::begin(Channel inChannel)
This is an internal method, use it only if you need to send raw data This is an internal method, use it only if you need to send raw data
from your code, at your own risks. from your code, at your own risks.
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
void MidiInterface<Encoder, Settings>::send(MidiType inType, void MidiInterface<Encoder, Settings, Platform>::send(MidiType inType,
DataByte inData1, DataByte inData1,
DataByte inData2, DataByte inData2,
Channel inChannel) Channel inChannel)
@ -185,7 +185,7 @@ void MidiInterface<Encoder, Settings>::send(MidiType inType,
} }
if (mSenderActiveSensingActivated) if (mSenderActiveSensingActivated)
mLastMessageSentTime = millis(); mLastMessageSentTime = Platform::now();
} }
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
@ -199,8 +199,8 @@ void MidiInterface<Encoder, Settings>::send(MidiType inType,
Take a look at the values, names and frequencies of notes here: Take a look at the values, names and frequencies of notes here:
http://www.phys.unsw.edu.au/jw/notes.html http://www.phys.unsw.edu.au/jw/notes.html
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
void MidiInterface<Encoder, Settings>::sendNoteOn(DataByte inNoteNumber, void MidiInterface<Encoder, Settings, Platform>::sendNoteOn(DataByte inNoteNumber,
DataByte inVelocity, DataByte inVelocity,
Channel inChannel) Channel inChannel)
{ {
@ -218,8 +218,8 @@ void MidiInterface<Encoder, Settings>::sendNoteOn(DataByte inNoteNumber,
Take a look at the values, names and frequencies of notes here: Take a look at the values, names and frequencies of notes here:
http://www.phys.unsw.edu.au/jw/notes.html http://www.phys.unsw.edu.au/jw/notes.html
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
void MidiInterface<Encoder, Settings>::sendNoteOff(DataByte inNoteNumber, void MidiInterface<Encoder, Settings, Platform>::sendNoteOff(DataByte inNoteNumber,
DataByte inVelocity, DataByte inVelocity,
Channel inChannel) Channel inChannel)
{ {
@ -230,8 +230,8 @@ void MidiInterface<Encoder, Settings>::sendNoteOff(DataByte inNoteNumber,
\param inProgramNumber The Program to select (0 to 127). \param inProgramNumber The Program to select (0 to 127).
\param inChannel The channel on which the message will be sent (1 to 16). \param inChannel The channel on which the message will be sent (1 to 16).
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
void MidiInterface<Encoder, Settings>::sendProgramChange(DataByte inProgramNumber, void MidiInterface<Encoder, Settings, Platform>::sendProgramChange(DataByte inProgramNumber,
Channel inChannel) Channel inChannel)
{ {
send(ProgramChange, inProgramNumber, 0, inChannel); send(ProgramChange, inProgramNumber, 0, inChannel);
@ -243,8 +243,8 @@ void MidiInterface<Encoder, Settings>::sendProgramChange(DataByte inProgramNumbe
\param inChannel The channel on which the message will be sent (1 to 16). \param inChannel The channel on which the message will be sent (1 to 16).
@see MidiControlChangeNumber @see MidiControlChangeNumber
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
void MidiInterface<Encoder, Settings>::sendControlChange(DataByte inControlNumber, void MidiInterface<Encoder, Settings, Platform>::sendControlChange(DataByte inControlNumber,
DataByte inControlValue, DataByte inControlValue,
Channel inChannel) Channel inChannel)
{ {
@ -258,8 +258,8 @@ void MidiInterface<Encoder, Settings>::sendControlChange(DataByte inControlNumbe
Note: this method is deprecated and will be removed in a future revision of the Note: this method is deprecated and will be removed in a future revision of the
library, @see sendAfterTouch to send polyphonic and monophonic AfterTouch messages. library, @see sendAfterTouch to send polyphonic and monophonic AfterTouch messages.
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
void MidiInterface<Encoder, Settings>::sendPolyPressure(DataByte inNoteNumber, void MidiInterface<Encoder, Settings, Platform>::sendPolyPressure(DataByte inNoteNumber,
DataByte inPressure, DataByte inPressure,
Channel inChannel) Channel inChannel)
{ {
@ -270,8 +270,8 @@ void MidiInterface<Encoder, Settings>::sendPolyPressure(DataByte inNoteNumber,
\param inPressure The amount of AfterTouch to apply to all notes. \param inPressure The amount of AfterTouch to apply to all notes.
\param inChannel The channel on which the message will be sent (1 to 16). \param inChannel The channel on which the message will be sent (1 to 16).
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
void MidiInterface<Encoder, Settings>::sendAfterTouch(DataByte inPressure, void MidiInterface<Encoder, Settings, Platform>::sendAfterTouch(DataByte inPressure,
Channel inChannel) Channel inChannel)
{ {
send(AfterTouchChannel, inPressure, 0, inChannel); send(AfterTouchChannel, inPressure, 0, inChannel);
@ -283,8 +283,8 @@ void MidiInterface<Encoder, Settings>::sendAfterTouch(DataByte inPressure,
\param inChannel The channel on which the message will be sent (1 to 16). \param inChannel The channel on which the message will be sent (1 to 16).
@see Replaces sendPolyPressure (which is now deprecated). @see Replaces sendPolyPressure (which is now deprecated).
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
void MidiInterface<Encoder, Settings>::sendAfterTouch(DataByte inNoteNumber, void MidiInterface<Encoder, Settings, Platform>::sendAfterTouch(DataByte inNoteNumber,
DataByte inPressure, DataByte inPressure,
Channel inChannel) Channel inChannel)
{ {
@ -297,8 +297,8 @@ void MidiInterface<Encoder, Settings>::sendAfterTouch(DataByte inNoteNumber,
center value is 0. center value is 0.
\param inChannel The channel on which the message will be sent (1 to 16). \param inChannel The channel on which the message will be sent (1 to 16).
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
void MidiInterface<Encoder, Settings>::sendPitchBend(int inPitchValue, void MidiInterface<Encoder, Settings, Platform>::sendPitchBend(int inPitchValue,
Channel inChannel) Channel inChannel)
{ {
const unsigned bend = unsigned(inPitchValue - int(MIDI_PITCHBEND_MIN)); const unsigned bend = unsigned(inPitchValue - int(MIDI_PITCHBEND_MIN));
@ -312,8 +312,8 @@ void MidiInterface<Encoder, Settings>::sendPitchBend(int inPitchValue,
and +1.0f (max upwards bend), center value is 0.0f. and +1.0f (max upwards bend), center value is 0.0f.
\param inChannel The channel on which the message will be sent (1 to 16). \param inChannel The channel on which the message will be sent (1 to 16).
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
void MidiInterface<Encoder, Settings>::sendPitchBend(double inPitchValue, void MidiInterface<Encoder, Settings, Platform>::sendPitchBend(double inPitchValue,
Channel inChannel) Channel inChannel)
{ {
const int scale = inPitchValue > 0.0 ? MIDI_PITCHBEND_MAX : MIDI_PITCHBEND_MIN; const int scale = inPitchValue > 0.0 ? MIDI_PITCHBEND_MAX : MIDI_PITCHBEND_MIN;
@ -330,8 +330,8 @@ void MidiInterface<Encoder, Settings>::sendPitchBend(double inPitchValue,
default value for ArrayContainsBoundaries is set to 'false' for compatibility default value for ArrayContainsBoundaries is set to 'false' for compatibility
with previous versions of the library. with previous versions of the library.
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
void MidiInterface<Encoder, Settings>::sendSysEx(unsigned inLength, void MidiInterface<Encoder, Settings, Platform>::sendSysEx(unsigned inLength,
const byte* inArray, const byte* inArray,
bool inArrayContainsBoundaries) bool inArrayContainsBoundaries)
{ {
@ -362,8 +362,8 @@ void MidiInterface<Encoder, Settings>::sendSysEx(unsigned inLength,
When a MIDI unit receives this message, When a MIDI unit receives this message,
it should tune its oscillators (if equipped with any). it should tune its oscillators (if equipped with any).
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
void MidiInterface<Encoder, Settings>::sendTuneRequest() void MidiInterface<Encoder, Settings, Platform>::sendTuneRequest()
{ {
if (mEncoder.beginTransmission()) if (mEncoder.beginTransmission())
{ {
@ -383,8 +383,8 @@ void MidiInterface<Encoder, Settings>::sendTuneRequest()
\param inValuesNibble MTC data \param inValuesNibble MTC data
See MIDI Specification for more information. See MIDI Specification for more information.
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
void MidiInterface<Encoder, Settings>::sendTimeCodeQuarterFrame(DataByte inTypeNibble, void MidiInterface<Encoder, Settings, Platform>::sendTimeCodeQuarterFrame(DataByte inTypeNibble,
DataByte inValuesNibble) DataByte inValuesNibble)
{ {
const byte data = byte((((inTypeNibble & 0x07) << 4) | (inValuesNibble & 0x0f))); const byte data = byte((((inTypeNibble & 0x07) << 4) | (inValuesNibble & 0x0f)));
@ -397,8 +397,8 @@ void MidiInterface<Encoder, Settings>::sendTimeCodeQuarterFrame(DataByte inTypeN
\param inData if you want to encode directly the nibbles in your program, \param inData if you want to encode directly the nibbles in your program,
you can send the byte here. you can send the byte here.
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
void MidiInterface<Encoder, Settings>::sendTimeCodeQuarterFrame(DataByte inData) void MidiInterface<Encoder, Settings, Platform>::sendTimeCodeQuarterFrame(DataByte inData)
{ {
if (mEncoder.beginTransmission()) if (mEncoder.beginTransmission())
{ {
@ -416,8 +416,8 @@ void MidiInterface<Encoder, Settings>::sendTimeCodeQuarterFrame(DataByte inData)
/*! \brief Send a Song Position Pointer message. /*! \brief Send a Song Position Pointer message.
\param inBeats The number of beats since the start of the song. \param inBeats The number of beats since the start of the song.
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
void MidiInterface<Encoder, Settings>::sendSongPosition(unsigned inBeats) void MidiInterface<Encoder, Settings, Platform>::sendSongPosition(unsigned inBeats)
{ {
if (mEncoder.beginTransmission()) if (mEncoder.beginTransmission())
{ {
@ -434,8 +434,8 @@ void MidiInterface<Encoder, Settings>::sendSongPosition(unsigned inBeats)
} }
/*! \brief Send a Song Select message */ /*! \brief Send a Song Select message */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
void MidiInterface<Encoder, Settings>::sendSongSelect(DataByte inSongNumber) void MidiInterface<Encoder, Settings, Platform>::sendSongSelect(DataByte inSongNumber)
{ {
if (mEncoder.beginTransmission()) if (mEncoder.beginTransmission())
{ {
@ -456,8 +456,8 @@ void MidiInterface<Encoder, Settings>::sendSongSelect(DataByte inSongNumber)
Start, Stop, Continue, Clock, ActiveSensing and SystemReset. Start, Stop, Continue, Clock, ActiveSensing and SystemReset.
@see MidiType @see MidiType
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
void MidiInterface<Encoder, Settings>::sendRealTime(MidiType inType) void MidiInterface<Encoder, Settings, Platform>::sendRealTime(MidiType inType)
{ {
// Do not invalidate Running Status for real-time messages // Do not invalidate Running Status for real-time messages
// as they can be interleaved within any message. // as they can be interleaved within any message.
@ -486,8 +486,8 @@ void MidiInterface<Encoder, Settings>::sendRealTime(MidiType inType)
\param inNumber The 14-bit number of the RPN you want to select. \param inNumber The 14-bit number of the RPN you want to select.
\param inChannel The channel on which the message will be sent (1 to 16). \param inChannel The channel on which the message will be sent (1 to 16).
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline void MidiInterface<Encoder, Settings>::beginRpn(unsigned inNumber, inline void MidiInterface<Encoder, Settings, Platform>::beginRpn(unsigned inNumber,
Channel inChannel) Channel inChannel)
{ {
if (mCurrentRpnNumber != inNumber) if (mCurrentRpnNumber != inNumber)
@ -504,8 +504,8 @@ inline void MidiInterface<Encoder, Settings>::beginRpn(unsigned inNumber,
\param inValue The 14-bit value of the selected RPN. \param inValue The 14-bit value of the selected RPN.
\param inChannel The channel on which the message will be sent (1 to 16). \param inChannel The channel on which the message will be sent (1 to 16).
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline void MidiInterface<Encoder, Settings>::sendRpnValue(unsigned inValue, inline void MidiInterface<Encoder, Settings, Platform>::sendRpnValue(unsigned inValue,
Channel inChannel) Channel inChannel)
{; {;
const byte valMsb = 0x7f & (inValue >> 7); const byte valMsb = 0x7f & (inValue >> 7);
@ -519,8 +519,8 @@ inline void MidiInterface<Encoder, Settings>::sendRpnValue(unsigned inValue,
\param inLsb The LSB part of the value to send. Meaning depends on RPN number. \param inLsb The LSB part of the value to send. Meaning depends on RPN number.
\param inChannel The channel on which the message will be sent (1 to 16). \param inChannel The channel on which the message will be sent (1 to 16).
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline void MidiInterface<Encoder, Settings>::sendRpnValue(byte inMsb, inline void MidiInterface<Encoder, Settings, Platform>::sendRpnValue(byte inMsb,
byte inLsb, byte inLsb,
Channel inChannel) Channel inChannel)
{ {
@ -531,8 +531,8 @@ inline void MidiInterface<Encoder, Settings>::sendRpnValue(byte inMsb,
/* \brief Increment the value of the currently selected RPN number by the specified amount. /* \brief Increment the value of the currently selected RPN number by the specified amount.
\param inAmount The amount to add to the currently selected RPN value. \param inAmount The amount to add to the currently selected RPN value.
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline void MidiInterface<Encoder, Settings>::sendRpnIncrement(byte inAmount, inline void MidiInterface<Encoder, Settings, Platform>::sendRpnIncrement(byte inAmount,
Channel inChannel) Channel inChannel)
{ {
sendControlChange(DataIncrement, inAmount, inChannel); sendControlChange(DataIncrement, inAmount, inChannel);
@ -541,8 +541,8 @@ inline void MidiInterface<Encoder, Settings>::sendRpnIncrement(byte inAmount,
/* \brief Decrement the value of the currently selected RPN number by the specified amount. /* \brief Decrement the value of the currently selected RPN number by the specified amount.
\param inAmount The amount to subtract to the currently selected RPN value. \param inAmount The amount to subtract to the currently selected RPN value.
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline void MidiInterface<Encoder, Settings>::sendRpnDecrement(byte inAmount, inline void MidiInterface<Encoder, Settings, Platform>::sendRpnDecrement(byte inAmount,
Channel inChannel) Channel inChannel)
{ {
sendControlChange(DataDecrement, inAmount, inChannel); sendControlChange(DataDecrement, inAmount, inChannel);
@ -552,8 +552,8 @@ inline void MidiInterface<Encoder, Settings>::sendRpnDecrement(byte inAmount,
This will send a Null Function to deselect the currently selected RPN. This will send a Null Function to deselect the currently selected RPN.
\param inChannel The channel on which the message will be sent (1 to 16). \param inChannel The channel on which the message will be sent (1 to 16).
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline void MidiInterface<Encoder, Settings>::endRpn(Channel inChannel) inline void MidiInterface<Encoder, Settings, Platform>::endRpn(Channel inChannel)
{ {
sendControlChange(RPNLSB, 0x7f, inChannel); sendControlChange(RPNLSB, 0x7f, inChannel);
sendControlChange(RPNMSB, 0x7f, inChannel); sendControlChange(RPNMSB, 0x7f, inChannel);
@ -566,8 +566,8 @@ inline void MidiInterface<Encoder, Settings>::endRpn(Channel inChannel)
\param inNumber The 14-bit number of the NRPN you want to select. \param inNumber The 14-bit number of the NRPN you want to select.
\param inChannel The channel on which the message will be sent (1 to 16). \param inChannel The channel on which the message will be sent (1 to 16).
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline void MidiInterface<Encoder, Settings>::beginNrpn(unsigned inNumber, inline void MidiInterface<Encoder, Settings, Platform>::beginNrpn(unsigned inNumber,
Channel inChannel) Channel inChannel)
{ {
if (mCurrentNrpnNumber != inNumber) if (mCurrentNrpnNumber != inNumber)
@ -584,8 +584,8 @@ inline void MidiInterface<Encoder, Settings>::beginNrpn(unsigned inNumber,
\param inValue The 14-bit value of the selected NRPN. \param inValue The 14-bit value of the selected NRPN.
\param inChannel The channel on which the message will be sent (1 to 16). \param inChannel The channel on which the message will be sent (1 to 16).
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline void MidiInterface<Encoder, Settings>::sendNrpnValue(unsigned inValue, inline void MidiInterface<Encoder, Settings, Platform>::sendNrpnValue(unsigned inValue,
Channel inChannel) Channel inChannel)
{; {;
const byte valMsb = 0x7f & (inValue >> 7); const byte valMsb = 0x7f & (inValue >> 7);
@ -599,8 +599,8 @@ inline void MidiInterface<Encoder, Settings>::sendNrpnValue(unsigned inValue,
\param inLsb The LSB part of the value to send. Meaning depends on NRPN number. \param inLsb The LSB part of the value to send. Meaning depends on NRPN number.
\param inChannel The channel on which the message will be sent (1 to 16). \param inChannel The channel on which the message will be sent (1 to 16).
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline void MidiInterface<Encoder, Settings>::sendNrpnValue(byte inMsb, inline void MidiInterface<Encoder, Settings, Platform>::sendNrpnValue(byte inMsb,
byte inLsb, byte inLsb,
Channel inChannel) Channel inChannel)
{ {
@ -611,8 +611,8 @@ inline void MidiInterface<Encoder, Settings>::sendNrpnValue(byte inMsb,
/* \brief Increment the value of the currently selected NRPN number by the specified amount. /* \brief Increment the value of the currently selected NRPN number by the specified amount.
\param inAmount The amount to add to the currently selected NRPN value. \param inAmount The amount to add to the currently selected NRPN value.
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline void MidiInterface<Encoder, Settings>::sendNrpnIncrement(byte inAmount, inline void MidiInterface<Encoder, Settings, Platform>::sendNrpnIncrement(byte inAmount,
Channel inChannel) Channel inChannel)
{ {
sendControlChange(DataIncrement, inAmount, inChannel); sendControlChange(DataIncrement, inAmount, inChannel);
@ -621,8 +621,8 @@ inline void MidiInterface<Encoder, Settings>::sendNrpnIncrement(byte inAmount,
/* \brief Decrement the value of the currently selected NRPN number by the specified amount. /* \brief Decrement the value of the currently selected NRPN number by the specified amount.
\param inAmount The amount to subtract to the currently selected NRPN value. \param inAmount The amount to subtract to the currently selected NRPN value.
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline void MidiInterface<Encoder, Settings>::sendNrpnDecrement(byte inAmount, inline void MidiInterface<Encoder, Settings, Platform>::sendNrpnDecrement(byte inAmount,
Channel inChannel) Channel inChannel)
{ {
sendControlChange(DataDecrement, inAmount, inChannel); sendControlChange(DataDecrement, inAmount, inChannel);
@ -632,8 +632,8 @@ inline void MidiInterface<Encoder, Settings>::sendNrpnDecrement(byte inAmount,
This will send a Null Function to deselect the currently selected NRPN. This will send a Null Function to deselect the currently selected NRPN.
\param inChannel The channel on which the message will be sent (1 to 16). \param inChannel The channel on which the message will be sent (1 to 16).
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline void MidiInterface<Encoder, Settings>::endNrpn(Channel inChannel) inline void MidiInterface<Encoder, Settings, Platform>::endNrpn(Channel inChannel)
{ {
sendControlChange(NRPNLSB, 0x7f, inChannel); sendControlChange(NRPNLSB, 0x7f, inChannel);
sendControlChange(NRPNMSB, 0x7f, inChannel); sendControlChange(NRPNMSB, 0x7f, inChannel);
@ -644,8 +644,8 @@ inline void MidiInterface<Encoder, Settings>::endNrpn(Channel inChannel)
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
StatusByte MidiInterface<Encoder, Settings>::getStatus(MidiType inType, StatusByte MidiInterface<Encoder, Settings, Platform>::getStatus(MidiType inType,
Channel inChannel) const Channel inChannel) const
{ {
return StatusByte(((byte)inType | ((inChannel - 1) & 0x0f))); return StatusByte(((byte)inType | ((inChannel - 1) & 0x0f)));
@ -667,16 +667,16 @@ StatusByte MidiInterface<Encoder, Settings>::getStatus(MidiType inType,
it is sent back on the MIDI output. it is sent back on the MIDI output.
@see see setInputChannel() @see see setInputChannel()
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline bool MidiInterface<Encoder, Settings>::read() inline bool MidiInterface<Encoder, Settings, Platform>::read()
{ {
return read(mInputChannel); return read(mInputChannel);
} }
/*! \brief Read messages on a specified channel. /*! \brief Read messages on a specified channel.
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline bool MidiInterface<Encoder, Settings>::read(Channel inChannel) inline bool MidiInterface<Encoder, Settings, Platform>::read(Channel inChannel)
{ {
// Active Sensing. This message is intended to be sent // Active Sensing. This message is intended to be sent
// repeatedly to tell the receiver that a connection is alive. Use // repeatedly to tell the receiver that a connection is alive. Use
@ -686,10 +686,10 @@ inline bool MidiInterface<Encoder, Settings>::read(Channel inChannel)
// assume that the connection has been terminated. At // assume that the connection has been terminated. At
// termination, the receiver will turn off all voices and return to // termination, the receiver will turn off all voices and return to
// normal (non- active sensing) operation. // normal (non- active sensing) operation.
if (mSenderActiveSensingActivated && (millis() - mLastMessageSentTime) > 270) if (mSenderActiveSensingActivated && (Platform::now() - mLastMessageSentTime) > 270)
{ {
sendRealTime(ActiveSensing); sendRealTime(ActiveSensing);
mLastMessageSentTime = millis(); mLastMessageSentTime = Platform::now();
} }
if (inChannel >= MIDI_CHANNEL_OFF) if (inChannel >= MIDI_CHANNEL_OFF)
@ -714,8 +714,8 @@ inline bool MidiInterface<Encoder, Settings>::read(Channel inChannel)
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
// Private method: MIDI parser // Private method: MIDI parser
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
bool MidiInterface<Encoder, Settings>::parse() bool MidiInterface<Encoder, Settings, Platform>::parse()
{ {
if (mEncoder.available() == 0) if (mEncoder.available() == 0)
{ {
@ -1002,8 +1002,8 @@ bool MidiInterface<Encoder, Settings>::parse()
} }
// Private method, see midi_Settings.h for documentation // Private method, see midi_Settings.h for documentation
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline void MidiInterface<Encoder, Settings>::handleNullVelocityNoteOnAsNoteOff() inline void MidiInterface<Encoder, Settings, Platform>::handleNullVelocityNoteOnAsNoteOff()
{ {
if (Settings::HandleNullVelocityNoteOnAsNoteOff && if (Settings::HandleNullVelocityNoteOnAsNoteOff &&
getType() == NoteOn && getData2() == 0) getType() == NoteOn && getData2() == 0)
@ -1013,8 +1013,8 @@ inline void MidiInterface<Encoder, Settings>::handleNullVelocityNoteOnAsNoteOff(
} }
// Private method: check if the received message is on the listened channel // Private method: check if the received message is on the listened channel
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline bool MidiInterface<Encoder, Settings>::inputFilter(Channel inChannel) inline bool MidiInterface<Encoder, Settings, Platform>::inputFilter(Channel inChannel)
{ {
// This method handles recognition of channel // This method handles recognition of channel
// (to know if the message is destinated to the Arduino) // (to know if the message is destinated to the Arduino)
@ -1042,8 +1042,8 @@ inline bool MidiInterface<Encoder, Settings>::inputFilter(Channel inChannel)
} }
// Private method: reset input attributes // Private method: reset input attributes
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline void MidiInterface<Encoder, Settings>::resetInput() inline void MidiInterface<Encoder, Settings, Platform>::resetInput()
{ {
mPendingMessageIndex = 0; mPendingMessageIndex = 0;
mPendingMessageExpectedLenght = 0; mPendingMessageExpectedLenght = 0;
@ -1056,8 +1056,8 @@ inline void MidiInterface<Encoder, Settings>::resetInput()
Returns an enumerated type. @see MidiType Returns an enumerated type. @see MidiType
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline MidiType MidiInterface<Encoder, Settings>::getType() const inline MidiType MidiInterface<Encoder, Settings, Platform>::getType() const
{ {
return mMessage.type; return mMessage.type;
} }
@ -1067,22 +1067,22 @@ inline MidiType MidiInterface<Encoder, Settings>::getType() const
\return Channel range is 1 to 16. \return Channel range is 1 to 16.
For non-channel messages, this will return 0. For non-channel messages, this will return 0.
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline Channel MidiInterface<Encoder, Settings>::getChannel() const inline Channel MidiInterface<Encoder, Settings, Platform>::getChannel() const
{ {
return mMessage.channel; return mMessage.channel;
} }
/*! \brief Get the first data byte of the last received message. */ /*! \brief Get the first data byte of the last received message. */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline DataByte MidiInterface<Encoder, Settings>::getData1() const inline DataByte MidiInterface<Encoder, Settings, Platform>::getData1() const
{ {
return mMessage.data1; return mMessage.data1;
} }
/*! \brief Get the second data byte of the last received message. */ /*! \brief Get the second data byte of the last received message. */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline DataByte MidiInterface<Encoder, Settings>::getData2() const inline DataByte MidiInterface<Encoder, Settings, Platform>::getData2() const
{ {
return mMessage.data2; return mMessage.data2;
} }
@ -1091,8 +1091,8 @@ inline DataByte MidiInterface<Encoder, Settings>::getData2() const
@see getSysExArrayLength to get the array's length in bytes. @see getSysExArrayLength to get the array's length in bytes.
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline const byte* MidiInterface<Encoder, Settings>::getSysExArray() const inline const byte* MidiInterface<Encoder, Settings, Platform>::getSysExArray() const
{ {
return mMessage.sysexArray; return mMessage.sysexArray;
} }
@ -1102,23 +1102,23 @@ inline const byte* MidiInterface<Encoder, Settings>::getSysExArray() const
It is coded using data1 as LSB and data2 as MSB. It is coded using data1 as LSB and data2 as MSB.
\return The array's length, in bytes. \return The array's length, in bytes.
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline unsigned MidiInterface<Encoder, Settings>::getSysExArrayLength() const inline unsigned MidiInterface<Encoder, Settings, Platform>::getSysExArrayLength() const
{ {
return mMessage.getSysExSize(); return mMessage.getSysExSize();
} }
/*! \brief Check if a valid message is stored in the structure. */ /*! \brief Check if a valid message is stored in the structure. */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline bool MidiInterface<Encoder, Settings>::check() const inline bool MidiInterface<Encoder, Settings, Platform>::check() const
{ {
return mMessage.valid; return mMessage.valid;
} }
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline Channel MidiInterface<Encoder, Settings>::getInputChannel() const inline Channel MidiInterface<Encoder, Settings, Platform>::getInputChannel() const
{ {
return mInputChannel; return mInputChannel;
} }
@ -1127,8 +1127,8 @@ inline Channel MidiInterface<Encoder, Settings>::getInputChannel() const
\param inChannel the channel value. Valid values are 1 to 16, MIDI_CHANNEL_OMNI \param inChannel the channel value. Valid values are 1 to 16, MIDI_CHANNEL_OMNI
if you want to listen to all channels, and MIDI_CHANNEL_OFF to disable input. if you want to listen to all channels, and MIDI_CHANNEL_OFF to disable input.
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline void MidiInterface<Encoder, Settings>::setInputChannel(Channel inChannel) inline void MidiInterface<Encoder, Settings, Platform>::setInputChannel(Channel inChannel)
{ {
mInputChannel = inChannel; mInputChannel = inChannel;
} }
@ -1140,8 +1140,8 @@ inline void MidiInterface<Encoder, Settings>::setInputChannel(Channel inChannel)
This is a utility static method, used internally, This is a utility static method, used internally,
made public so you can handle MidiTypes more easily. made public so you can handle MidiTypes more easily.
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
MidiType MidiInterface<Encoder, Settings>::getTypeFromStatusByte(byte inStatus) MidiType MidiInterface<Encoder, Settings, Platform>::getTypeFromStatusByte(byte inStatus)
{ {
if ((inStatus < 0x80) || if ((inStatus < 0x80) ||
(inStatus == 0xf4) || (inStatus == 0xf4) ||
@ -1163,14 +1163,14 @@ MidiType MidiInterface<Encoder, Settings>::getTypeFromStatusByte(byte inStatus)
/*! \brief Returns channel in the range 1-16 /*! \brief Returns channel in the range 1-16
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline Channel MidiInterface<Encoder, Settings>::getChannelFromStatusByte(byte inStatus) inline Channel MidiInterface<Encoder, Settings, Platform>::getChannelFromStatusByte(byte inStatus)
{ {
return Channel((inStatus & 0x0f) + 1); return Channel((inStatus & 0x0f) + 1);
} }
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
bool MidiInterface<Encoder, Settings>::isChannelMessage(MidiType inType) bool MidiInterface<Encoder, Settings, Platform>::isChannelMessage(MidiType inType)
{ {
return (inType == NoteOff || return (inType == NoteOff ||
inType == NoteOn || inType == NoteOn ||
@ -1187,24 +1187,24 @@ bool MidiInterface<Encoder, Settings>::isChannelMessage(MidiType inType)
@{ @{
*/ */
template<class Encoder, class Settings> void MidiInterface<Encoder, Settings>::setHandleNoteOff(void (*fptr)(byte channel, byte note, byte velocity)) { mNoteOffCallback = fptr; } template<class Encoder, class Settings, class Platform> void MidiInterface<Encoder, Settings, Platform>::setHandleNoteOff(void (*fptr)(byte channel, byte note, byte velocity)) { mNoteOffCallback = fptr; }
template<class Encoder, class Settings> void MidiInterface<Encoder, Settings>::setHandleNoteOn(void (*fptr)(byte channel, byte note, byte velocity)) { mNoteOnCallback = fptr; } template<class Encoder, class Settings, class Platform> void MidiInterface<Encoder, Settings, Platform>::setHandleNoteOn(void (*fptr)(byte channel, byte note, byte velocity)) { mNoteOnCallback = fptr; }
template<class Encoder, class Settings> void MidiInterface<Encoder, Settings>::setHandleAfterTouchPoly(void (*fptr)(byte channel, byte note, byte pressure)) { mAfterTouchPolyCallback = fptr; } template<class Encoder, class Settings, class Platform> void MidiInterface<Encoder, Settings, Platform>::setHandleAfterTouchPoly(void (*fptr)(byte channel, byte note, byte pressure)) { mAfterTouchPolyCallback = fptr; }
template<class Encoder, class Settings> void MidiInterface<Encoder, Settings>::setHandleControlChange(void (*fptr)(byte channel, byte number, byte value)) { mControlChangeCallback = fptr; } template<class Encoder, class Settings, class Platform> void MidiInterface<Encoder, Settings, Platform>::setHandleControlChange(void (*fptr)(byte channel, byte number, byte value)) { mControlChangeCallback = fptr; }
template<class Encoder, class Settings> void MidiInterface<Encoder, Settings>::setHandleProgramChange(void (*fptr)(byte channel, byte number)) { mProgramChangeCallback = fptr; } template<class Encoder, class Settings, class Platform> void MidiInterface<Encoder, Settings, Platform>::setHandleProgramChange(void (*fptr)(byte channel, byte number)) { mProgramChangeCallback = fptr; }
template<class Encoder, class Settings> void MidiInterface<Encoder, Settings>::setHandleAfterTouchChannel(void (*fptr)(byte channel, byte pressure)) { mAfterTouchChannelCallback = fptr; } template<class Encoder, class Settings, class Platform> void MidiInterface<Encoder, Settings, Platform>::setHandleAfterTouchChannel(void (*fptr)(byte channel, byte pressure)) { mAfterTouchChannelCallback = fptr; }
template<class Encoder, class Settings> void MidiInterface<Encoder, Settings>::setHandlePitchBend(void (*fptr)(byte channel, int bend)) { mPitchBendCallback = fptr; } template<class Encoder, class Settings, class Platform> void MidiInterface<Encoder, Settings, Platform>::setHandlePitchBend(void (*fptr)(byte channel, int bend)) { mPitchBendCallback = fptr; }
template<class Encoder, class Settings> void MidiInterface<Encoder, Settings>::setHandleSystemExclusive(void (*fptr)(byte* array, unsigned size)) { mSystemExclusiveCallback = fptr; } template<class Encoder, class Settings, class Platform> void MidiInterface<Encoder, Settings, Platform>::setHandleSystemExclusive(void (*fptr)(byte* array, unsigned size)) { mSystemExclusiveCallback = fptr; }
template<class Encoder, class Settings> void MidiInterface<Encoder, Settings>::setHandleTimeCodeQuarterFrame(void (*fptr)(byte data)) { mTimeCodeQuarterFrameCallback = fptr; } template<class Encoder, class Settings, class Platform> void MidiInterface<Encoder, Settings, Platform>::setHandleTimeCodeQuarterFrame(void (*fptr)(byte data)) { mTimeCodeQuarterFrameCallback = fptr; }
template<class Encoder, class Settings> void MidiInterface<Encoder, Settings>::setHandleSongPosition(void (*fptr)(unsigned beats)) { mSongPositionCallback = fptr; } template<class Encoder, class Settings, class Platform> void MidiInterface<Encoder, Settings, Platform>::setHandleSongPosition(void (*fptr)(unsigned beats)) { mSongPositionCallback = fptr; }
template<class Encoder, class Settings> void MidiInterface<Encoder, Settings>::setHandleSongSelect(void (*fptr)(byte songnumber)) { mSongSelectCallback = fptr; } template<class Encoder, class Settings, class Platform> void MidiInterface<Encoder, Settings, Platform>::setHandleSongSelect(void (*fptr)(byte songnumber)) { mSongSelectCallback = fptr; }
template<class Encoder, class Settings> void MidiInterface<Encoder, Settings>::setHandleTuneRequest(void (*fptr)(void)) { mTuneRequestCallback = fptr; } template<class Encoder, class Settings, class Platform> void MidiInterface<Encoder, Settings, Platform>::setHandleTuneRequest(void (*fptr)(void)) { mTuneRequestCallback = fptr; }
template<class Encoder, class Settings> void MidiInterface<Encoder, Settings>::setHandleClock(void (*fptr)(void)) { mClockCallback = fptr; } template<class Encoder, class Settings, class Platform> void MidiInterface<Encoder, Settings, Platform>::setHandleClock(void (*fptr)(void)) { mClockCallback = fptr; }
template<class Encoder, class Settings> void MidiInterface<Encoder, Settings>::setHandleStart(void (*fptr)(void)) { mStartCallback = fptr; } template<class Encoder, class Settings, class Platform> void MidiInterface<Encoder, Settings, Platform>::setHandleStart(void (*fptr)(void)) { mStartCallback = fptr; }
template<class Encoder, class Settings> void MidiInterface<Encoder, Settings>::setHandleContinue(void (*fptr)(void)) { mContinueCallback = fptr; } template<class Encoder, class Settings, class Platform> void MidiInterface<Encoder, Settings, Platform>::setHandleContinue(void (*fptr)(void)) { mContinueCallback = fptr; }
template<class Encoder, class Settings> void MidiInterface<Encoder, Settings>::setHandleStop(void (*fptr)(void)) { mStopCallback = fptr; } template<class Encoder, class Settings, class Platform> void MidiInterface<Encoder, Settings, Platform>::setHandleStop(void (*fptr)(void)) { mStopCallback = fptr; }
template<class Encoder, class Settings> void MidiInterface<Encoder, Settings>::setHandleActiveSensing(void (*fptr)(void)) { mActiveSensingCallback = fptr; } template<class Encoder, class Settings, class Platform> void MidiInterface<Encoder, Settings, Platform>::setHandleActiveSensing(void (*fptr)(void)) { mActiveSensingCallback = fptr; }
template<class Encoder, class Settings> void MidiInterface<Encoder, Settings>::setHandleSystemReset(void (*fptr)(void)) { mSystemResetCallback = fptr; } template<class Encoder, class Settings, class Platform> void MidiInterface<Encoder, Settings, Platform>::setHandleSystemReset(void (*fptr)(void)) { mSystemResetCallback = fptr; }
/*! \brief Detach an external function from the given type. /*! \brief Detach an external function from the given type.
@ -1212,8 +1212,8 @@ template<class Encoder, class Settings> void MidiInterface<Encoder, Settings>::s
\param inType The type of message to unbind. \param inType The type of message to unbind.
When a message of this type is received, no function will be called. When a message of this type is received, no function will be called.
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
void MidiInterface<Encoder, Settings>::disconnectCallbackFromType(MidiType inType) void MidiInterface<Encoder, Settings, Platform>::disconnectCallbackFromType(MidiType inType)
{ {
switch (inType) switch (inType)
{ {
@ -1243,8 +1243,8 @@ void MidiInterface<Encoder, Settings>::disconnectCallbackFromType(MidiType inTyp
/*! @} */ // End of doc group MIDI Callbacks /*! @} */ // End of doc group MIDI Callbacks
// Private - launch callback function based on received type. // Private - launch callback function based on received type.
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
void MidiInterface<Encoder, Settings>::launchCallback() void MidiInterface<Encoder, Settings, Platform>::launchCallback()
{ {
// The order is mixed to allow frequent messages to trigger their callback faster. // The order is mixed to allow frequent messages to trigger their callback faster.
switch (mMessage.type) switch (mMessage.type)
@ -1298,34 +1298,34 @@ void MidiInterface<Encoder, Settings>::launchCallback()
@see Thru::Mode @see Thru::Mode
*/ */
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline void MidiInterface<Encoder, Settings>::setThruFilterMode(Thru::Mode inThruFilterMode) inline void MidiInterface<Encoder, Settings, Platform>::setThruFilterMode(Thru::Mode inThruFilterMode)
{ {
mThruFilterMode = inThruFilterMode; mThruFilterMode = inThruFilterMode;
mThruActivated = mThruFilterMode != Thru::Off; mThruActivated = mThruFilterMode != Thru::Off;
} }
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline Thru::Mode MidiInterface<Encoder, Settings>::getFilterMode() const inline Thru::Mode MidiInterface<Encoder, Settings, Platform>::getFilterMode() const
{ {
return mThruFilterMode; return mThruFilterMode;
} }
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline bool MidiInterface<Encoder, Settings>::getThruState() const inline bool MidiInterface<Encoder, Settings, Platform>::getThruState() const
{ {
return mThruActivated; return mThruActivated;
} }
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline void MidiInterface<Encoder, Settings>::turnThruOn(Thru::Mode inThruFilterMode) inline void MidiInterface<Encoder, Settings, Platform>::turnThruOn(Thru::Mode inThruFilterMode)
{ {
mThruActivated = true; mThruActivated = true;
mThruFilterMode = inThruFilterMode; mThruFilterMode = inThruFilterMode;
} }
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
inline void MidiInterface<Encoder, Settings>::turnThruOff() inline void MidiInterface<Encoder, Settings, Platform>::turnThruOff()
{ {
mThruActivated = false; mThruActivated = false;
mThruFilterMode = Thru::Off; mThruFilterMode = Thru::Off;
@ -1339,8 +1339,8 @@ inline void MidiInterface<Encoder, Settings>::turnThruOff()
// to output unless filter is set to Off. // to output unless filter is set to Off.
// - Channel messages are passed to the output whether their channel // - Channel messages are passed to the output whether their channel
// is matching the input channel and the filter setting // is matching the input channel and the filter setting
template<class Encoder, class Settings> template<class Encoder, class Settings, class Platform>
void MidiInterface<Encoder, Settings>::thruFilter(Channel inChannel) void MidiInterface<Encoder, Settings, Platform>::thruFilter(Channel inChannel)
{ {
// If the feature is disabled, don't do anything. // If the feature is disabled, don't do anything.
if (!mThruActivated || (mThruFilterMode == Thru::Off)) if (!mThruActivated || (mThruFilterMode == Thru::Off))

38
src/midi_Platform.h Normal file
View File

@ -0,0 +1,38 @@
/*!
* @file midi_Platform.h
* Project Arduino MIDI Library
* @brief MIDI Library for the Arduino - Settings
* @author Francois Best
* @date 24/02/11
* @license MIT - Copyright (c) 2015 Francois Best
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#pragma once
BEGIN_MIDI_NAMESPACE
// DefaultPlatform is the Arduino Platform
struct DefaultPlatform
{
static unsigned long now() { return ::millis(); };
};
END_MIDI_NAMESPACE