Revert the P25 transmitter length calculation.

This commit is contained in:
Jonathan Naylor 2016-10-05 09:15:48 +01:00 committed by GitHub
parent 02c90e3f7f
commit ec20831a3c
1 changed files with 1 additions and 2 deletions

View File

@ -192,6 +192,5 @@ void CP25TX::setTXDelay(uint8_t delay)
uint16_t CP25TX::getSpace() const
{
return m_buffer.getSpace() / (P25_LDU_FRAME_LENGTH_BYTES + 1U);
return m_buffer.getSpace() / P25_LDU_FRAME_LENGTH_BYTES;
}