mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-22 15:55:48 +03:00
Cleaned up the RX handler some.
This commit is contained in:
parent
6a6fd23742
commit
d13e83b91b
10 changed files with 50 additions and 35 deletions
|
@ -1102,4 +1102,5 @@ extern "C" {
|
|||
void blackboxLogEvent(FlightLogEvent, union flightLogEventData_u *) {};
|
||||
void gyroFiltering(timeUs_t) {};
|
||||
timeDelta_t rxGetFrameDelta(timeDelta_t *) { return 0; }
|
||||
void updateRcRefreshRate(timeUs_t) {};
|
||||
}
|
||||
|
|
|
@ -359,4 +359,5 @@ bool isModeActivationConditionConfigured(const modeActivationCondition_t *, cons
|
|||
void delay(uint32_t) {}
|
||||
displayPort_t *osdGetDisplayPort(osdDisplayPortDevice_e *) { return NULL; }
|
||||
mcuTypeId_e getMcuTypeId(void) { return MCU_TYPE_UNKNOWN; }
|
||||
uint16_t getCurrentRxRefreshRate(void) { return 0; }
|
||||
}
|
||||
|
|
|
@ -187,4 +187,5 @@ extern "C" {
|
|||
void blackboxLogEvent(FlightLogEvent, union flightLogEventData_u *) {};
|
||||
void gyroFiltering(timeUs_t) {};
|
||||
timeDelta_t rxGetFrameDelta(timeDelta_t *) { return 0; }
|
||||
void updateRcRefreshRate(timeUs_t) {};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue