Fix for missing POCSAG start tone

This commit is contained in:
Andy CA6JAU
2018-07-20 14:17:33 -04:00
parent db3649827f
commit 4821d0e959
4 changed files with 12 additions and 2 deletions
+8
View File
@@ -87,6 +87,14 @@ void CPOCSAGTX::process()
}
}
bool CPOCSAGTX::busy()
{
if (m_poLen > 0U)
return true;
else
return false;
}
uint8_t CPOCSAGTX::writeData(const uint8_t* data, uint8_t length)
{
if (length != POCSAG_FRAME_LENGTH_BYTES)