1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-29 07:24:13 +01:00

OP-1776 - Fixes from review

This commit is contained in:
Alessio Morale 2015-03-14 13:46:08 +01:00
parent 2a729c1742
commit a418ca349f
2 changed files with 3 additions and 4 deletions

View File

@ -647,11 +647,10 @@ static void ProcessTelemetryStream(UAVTalkConnection inConnectionHandle, UAVTalk
static void ProcessRadioStream(UAVTalkConnection inConnectionHandle, UAVTalkConnection outConnectionHandle, uint8_t *rxbuffer, uint8_t count)
{
uint8_t position = 0;
UAVTalkRxState state = UAVTALK_STATE_ERROR;
// Keep reading until we receive a completed packet.
while (count > 0) {
state = UAVTalkProcessInputStreamQuiet(inConnectionHandle, rxbuffer, &count, &position);
UAVTalkRxState state = UAVTalkProcessInputStreamQuiet(inConnectionHandle, rxbuffer, &count, &position);
if (state == UAVTALK_STATE_COMPLETE) {
// We only want to unpack certain objects from the remote modem
// Similarly we only want to relay certain objects to the telemetry port

View File

@ -578,7 +578,7 @@ UAVTalkRxState UAVTalkProcessInputStreamQuiet(UAVTalkConnection connectionHandle
}
/**
* Process an buffer from the telemetry stream.
* Process a buffer from the telemetry stream.
* \param[in] connection UAVTalkConnection to be used
* \param[in] rxbuffer Received buffer
* \param[in] count bytes inside rxbuffer