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

Add Blackbox logging of rx loss state flags

Closes #1266
This commit is contained in:
Nicholas Sherlock 2015-08-28 17:26:45 +12:00
parent c49bd407bf
commit b6a75cb3f1
2 changed files with 25 additions and 7 deletions

View file

@ -66,8 +66,8 @@ const char rcChannelLetters[] = "AERT12345678abcdefgh";
uint16_t rssi = 0; // range: [0;1023]
static bool rxDataReceived = false;
static bool rxSignalReceived = false;
static bool rxFlightChannelsValid = false;
bool rxSignalReceived = false;
bool rxFlightChannelsValid = false;
static uint32_t rxUpdateAt = 0;
static uint32_t needRxSignalBefore = 0;