mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-21 23:35:34 +03:00
Merge pull request #5807 from etracer65/gyro_both_validation
Only allow gyro_to_use = BOTH if both detected gyros are the same type
This commit is contained in:
commit
b0ee38d77b
5 changed files with 61 additions and 10 deletions
|
@ -697,7 +697,10 @@ void initRcProcessing(void) {}
|
|||
void changePidProfile(uint8_t) {}
|
||||
void pidInitConfig(const pidProfile_t *) {}
|
||||
void accSetCalibrationCycles(uint16_t) {}
|
||||
void gyroStartCalibration(void) {}
|
||||
void gyroStartCalibration(bool isFirstArmingCalibration)
|
||||
{
|
||||
UNUSED(isFirstArmingCalibration);
|
||||
}
|
||||
void applyAndSaveAccelerometerTrimsDelta(rollAndPitchTrims_t*) {}
|
||||
void handleInflightCalibrationStickPosition(void) {}
|
||||
bool feature(uint32_t) { return false;}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue