Transceiver: Fix idle ul burst indications being dropped

pullRadioVector() should return true on idle frames because those
indications may be handled by upper layers (TRXDv1). Clarify return code
in function documentation.

Change-Id: If592ed1c04cf7e995f656b313f60edd4d40d1bfd
This commit is contained in:
Pau Espin 2019-08-26 15:43:56 +02:00
parent e4166be76f
commit 4e6ec4554d
1 changed files with 2 additions and 1 deletions

View File

@ -587,6 +587,7 @@ void writeToFile(radioVector *radio_burst, size_t chan)
/*
* Pull bursts from the FIFO and handle according to the slot
* and burst correlation type. Equalzation is currently disabled.
* returns true on success (bi filled), false on error (bi content undefined).
*/
bool Transceiver::pullRadioVector(size_t chan, struct trx_ul_burst_ind *bi)
{
@ -708,7 +709,7 @@ bool Transceiver::pullRadioVector(size_t chan, struct trx_ul_burst_ind *bi)
ret_idle:
bi->idle = true;
delete radio_burst;
return false;
return true;
}
void Transceiver::reset()