use fully qualified function names as requested
This commit is contained in:
parent
299cd97cd1
commit
8c39aea6c6
|
|
@ -124,7 +124,7 @@ MidiInterface<Transport, Settings, Platform>& MidiInterface<Transport, Settings,
|
||||||
|
|
||||||
if (mTransport.beginTransmission(inMessage.type))
|
if (mTransport.beginTransmission(inMessage.type))
|
||||||
{
|
{
|
||||||
if (inMessage.isSysRT())
|
if (inMessage.isSystemRealTime())
|
||||||
{
|
{
|
||||||
mTransport.write(inMessage.type);
|
mTransport.write(inMessage.type);
|
||||||
} else if (inMessage.isChannelMessage())
|
} else if (inMessage.isChannelMessage())
|
||||||
|
|
|
||||||
|
|
@ -114,11 +114,11 @@ struct Message
|
||||||
const unsigned size = unsigned(data2) << 8 | data1;
|
const unsigned size = unsigned(data2) << 8 | data1;
|
||||||
return size > sSysExMaxSize ? sSysExMaxSize : size;
|
return size > sSysExMaxSize ? sSysExMaxSize : size;
|
||||||
}
|
}
|
||||||
inline bool isSysRT () const
|
inline bool isSystemRealTime () const
|
||||||
{
|
{
|
||||||
return (type & 0xf8) == 0xf8;
|
return (type & 0xf8) == 0xf8;
|
||||||
}
|
}
|
||||||
inline bool isSysCommon () const
|
inline bool isSystemCommon () const
|
||||||
{
|
{
|
||||||
return (type & 0xf8) == 0xf0;
|
return (type & 0xf8) == 0xf0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue