remove trailing spaces

This commit is contained in:
tbs-fpv 2021-04-12 09:59:04 +08:00
parent cbf9d355cd
commit eb16326897
2 changed files with 7 additions and 7 deletions

View File

@ -413,7 +413,7 @@ STATIC_UNIT_TESTED void crsfDataReceive(uint16_t c, void *data)
#endif
#if defined(USE_CRSF_V3)
case CRSF_FRAMETYPE_COMMAND:
if ((crsfFrame.bytes[fullFrameLength - 2] == crsfFrameCmdCRC()) &&
if ((crsfFrame.bytes[fullFrameLength - 2] == crsfFrameCmdCRC()) &&
(crsfFrame.bytes[3] == CRSF_ADDRESS_FLIGHT_CONTROLLER)) {
crsfProcessCommand(crsfFrame.frame.payload + CRSF_FRAME_ORIGIN_DEST_SIZE);
}
@ -507,8 +507,8 @@ STATIC_UNIT_TESTED uint8_t crsfFrameStatus(rxRuntimeState_t *rxRuntimeState)
readValue >>= CRSF_SUBSET_RC_CHANNELS_PACKED_RESOLUTION;
bitsMerged -= CRSF_SUBSET_RC_CHANNELS_PACKED_RESOLUTION;
}
}
#endif
}
#endif
return RX_FRAME_COMPLETE;
}
return RX_FRAME_PENDING;

View File

@ -379,7 +379,7 @@ void crsfFrameSpeedNegotiationResponse(sbuf_t *dst, bool reply) {
}
static void crsfProcessSpeedNegotiationCmd(uint8_t *frameStart) {
uint32_t newBaudrate = frameStart[2] << 24 | frameStart[3] << 16 | frameStart[4] << 8 | frameStart[5];
uint8_t ii = 0;
for (ii = 0; ii < BAUD_COUNT; ++ii) {
@ -393,7 +393,7 @@ static void crsfProcessSpeedNegotiationCmd(uint8_t *frameStart) {
void crsfScheduleSpeedNegotiationResponse(void) {
crsfSpeed.hasPendingReply = true;
crsfSpeed.isNewSpeedValid = false;
crsfSpeed.isNewSpeedValid = false;
}
#endif
@ -731,7 +731,7 @@ void handleCrsfTelemetry(timeUs_t currentTimeUs)
crsfFrameSpeedNegotiationResponse(dst, found);
crsfFinalize(dst);
crsfSpeed.hasPendingReply = false;
crsfSpeed.isNewSpeedValid = true;
crsfSpeed.isNewSpeedValid = true;
crsfSpeed.confirmationTime = currentTimeUs;
crsfLastCycleTime = currentTimeUs;
return;
@ -741,7 +741,7 @@ void handleCrsfTelemetry(timeUs_t currentTimeUs)
// delay 10ms before applying the new baudrate
crsfRxUpdateBaudrate(getCrsfDesireSpeed());
crsfSpeed.isNewSpeedValid = false;
isCrsfV3Running = true;
isCrsfV3Running = true;
return;
}
}