1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 16:25:31 +03:00

White space tidy

This commit is contained in:
jflyper 2020-02-15 14:59:11 +09:00 committed by mikeller
parent d25c852098
commit ff16686893
58 changed files with 310 additions and 310 deletions

View file

@ -106,7 +106,7 @@ uint16_t dshotConvertToExternal(float motorValue)
}
FAST_CODE uint16_t prepareDshotPacket(dshotProtocolControl_t *pcb)
{
{
uint16_t packet;
ATOMIC_BLOCK(NVIC_PRIO_DSHOT_DMA) {
@ -115,14 +115,14 @@ FAST_CODE uint16_t prepareDshotPacket(dshotProtocolControl_t *pcb)
}
// compute checksum
unsigned csum = 0;
unsigned csum = 0;
unsigned csum_data = packet;
for (int i = 0; i < 3; i++) {
csum ^= csum_data; // xor data by nibbles
csum_data >>= 4;
}
// append checksum
#ifdef USE_DSHOT_TELEMETRY
#ifdef USE_DSHOT_TELEMETRY
if (useDshotTelemetry) {
csum = ~csum;
}