mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-24 00:35:39 +03:00
Merge pull request #11223 from hydra/fix-elrs-unit-test
ExpressLRS - Fix compilation of unit test.
This commit is contained in:
commit
c2982eed40
1 changed files with 4 additions and 1 deletions
|
@ -98,7 +98,10 @@ typedef struct eprState_s {
|
|||
bool eventRecorded[EPR_EVENT_COUNT];
|
||||
} eprState_t;
|
||||
|
||||
eprState_t eprState = {0};
|
||||
eprState_t eprState = {
|
||||
.eventAtUs = {0},
|
||||
.eventRecorded = {0},
|
||||
};
|
||||
|
||||
static void expressLrsEPRRecordEvent(eprEvent_e event, uint32_t currentTimeUs)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue