mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 08:15:30 +03:00
Fixed potentially incorrect calculation in ACC calibration if non-default cycle number is used.
This commit is contained in:
parent
a7cd21e632
commit
a21d0f5d31
10 changed files with 14 additions and 21 deletions
|
@ -1070,7 +1070,7 @@ extern "C" {
|
|||
void blackboxUpdate(timeUs_t) {}
|
||||
void transponderUpdate(timeUs_t) {}
|
||||
void GPS_reset_home_position(void) {}
|
||||
void accSetCalibrationCycles(uint16_t) {}
|
||||
void accStartCalibration(void) {}
|
||||
void baroSetCalibrationCycles(uint16_t) {}
|
||||
void changePidProfile(uint8_t) {}
|
||||
void changeControlRateProfile(uint8_t) {}
|
||||
|
|
|
@ -610,7 +610,7 @@ void saveConfigAndNotify(void) {}
|
|||
void initRcProcessing(void) {}
|
||||
void changePidProfile(uint8_t) {}
|
||||
void pidInitConfig(const pidProfile_t *) {}
|
||||
void accSetCalibrationCycles(uint16_t) {}
|
||||
void accStartCalibration(void) {}
|
||||
void gyroStartCalibration(bool isFirstArmingCalibration)
|
||||
{
|
||||
UNUSED(isFirstArmingCalibration);
|
||||
|
|
|
@ -164,7 +164,7 @@ extern "C" {
|
|||
void blackboxUpdate(timeUs_t) {}
|
||||
void transponderUpdate(timeUs_t) {}
|
||||
void GPS_reset_home_position(void) {}
|
||||
void accSetCalibrationCycles(uint16_t) {}
|
||||
void accStartCalibration(void) {}
|
||||
void baroSetCalibrationCycles(uint16_t) {}
|
||||
void changePidProfile(uint8_t) {}
|
||||
void changeControlRateProfile(uint8_t) {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue