end method for Serial Transport
The Transport layer is started, but could never be stopped. This change will allow the underlying library to call the end() method in the Transport layers (all other Transport layer have the end() method implemented) Next step is to call the Transport end() method, when ending the MIDI instance
This commit is contained in:
parent
d9149d19df
commit
d501f4bb3d
|
|
@ -63,6 +63,11 @@ public:
|
|||
#endif
|
||||
}
|
||||
|
||||
void end()
|
||||
{
|
||||
mSerial.end();
|
||||
}
|
||||
|
||||
bool beginTransmission(MidiType)
|
||||
{
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Reference in New Issue