mirror of https://github.com/g4klx/MMDVM.git
Add the missing functions.
This commit is contained in:
parent
96364dc189
commit
5d1b66dde3
12
FM.cpp
12
FM.cpp
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue