mirror of https://github.com/ArduPilot/ardupilot
added dummy save() method to AP_IMU_Shim
git-svn-id: https://arducopter.googlecode.com/svn/trunk@1781 f9c3cf11-9bcb-44bc-f272-b75c42450872
This commit is contained in:
parent
acb0525bf6
commit
6268eae835
|
@ -48,6 +48,9 @@ public:
|
||||||
///
|
///
|
||||||
void set_accel(Vector3f v) { _accel = v; _updated = true; }
|
void set_accel(Vector3f v) { _accel = v; _updated = true; }
|
||||||
|
|
||||||
|
// dummy save method
|
||||||
|
void save(void) { }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
/// set true when new data is delivered
|
/// set true when new data is delivered
|
||||||
bool _updated;
|
bool _updated;
|
||||||
|
|
Loading…
Reference in New Issue