1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-26 17:55:19 +03:00

Compilation fix

This commit is contained in:
Bertrand Songis 2019-11-15 16:33:11 +01:00
parent 3a7e006635
commit 42a59dca35
No known key found for this signature in database
GPG key ID: F189F79290FEC50F
5 changed files with 10 additions and 10 deletions

View file

@ -353,7 +353,7 @@ void sendSport(uint8_t moduleIdx)
// unstuff and remove crc
for (uint8_t i = 0; i < outputTelemetryBuffer.size - 1 && j < 8; i++, j++) {
if (outputTelemetryBuffer.data[i] == BYTESTUFF) {
if (outputTelemetryBuffer.data[i] == BYTE_STUFF) {
i++;
sendMulti(moduleIdx, outputTelemetryBuffer.data[i] ^ STUFF_MASK);
}