Add the missing functions.

This commit is contained in:
Jonathan Naylor 2020-05-07 22:07:58 +01:00
parent 96364dc189
commit 5d1b66dde3
1 changed files with 12 additions and 0 deletions

12
FM.cpp
View File

@ -450,3 +450,15 @@ void CFM::beginRelaying()
m_timeoutTimer.start();
m_ackMinTimer.start();
}
uint8_t CFM::getSpace() const
{
// The amount of free space for receiving external audio, in bytes.
return 0U;
}
uint8_t CFM::writeData(const uint8_t* data, uint8_t length)
{
// Handle incoming external audio, in 12-bit packed form.
return 0U;
}