Commit 1b09e828 authored by Don Gagne's avatar Don Gagne

RC unit test needs stopCalibration support

parent ea433369
......@@ -106,7 +106,7 @@ public:
virtual int getAutopilotType() { return MAV_AUTOPILOT_PX4; };
virtual QGCUASFileManager* getFileManager() {Q_ASSERT(false); return NULL; }
virtual void startCalibration(StartCalibrationType calType) { Q_UNUSED(calType); return; };
virtual void stopCalibration() { Q_ASSERT(false); return; };
virtual void stopCalibration() { return; };
/** @brief Send a message over this link (to this or to all UAS on this link) */
virtual void sendMessage(LinkInterface* link, mavlink_message_t message){ Q_UNUSED(link); Q_UNUSED(message); Q_ASSERT(false); }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment