AP_NavEKF3: Add set_baro_alt_noise method

This commit is contained in:
Jacob Walser 2017-01-31 12:00:06 -05:00 committed by Andrew Tridgell
parent 098a716d41
commit ac1e1b9460

View File

@ -297,6 +297,9 @@ public:
// report any reason for why the backend is refusing to initialise
const char *prearm_failure_reason(void) const;
// set and save the _baroAltNoise parameter
void set_baro_alt_noise(float noise) { _baroAltNoise.set_and_save(noise); };
// allow the enable flag to be set by Replay
void set_enable(bool enable) { _enable.set(enable); }