Tracker: move telemetry_delayed up into base class

This commit is contained in:
Peter Barker 2016-05-30 10:17:24 +10:00 committed by Andrew Tridgell
parent 87a7907a63
commit ad4d23c34d

View File

@ -11,6 +11,11 @@ public:
protected:
// telem_delay is not used by Tracker but is pure virtual, thus
// this implementaiton. it probably *should* be used by Tracker,
// as currently Tracker may brick XBees
uint32_t telem_delay() const override { return 0; };
private:
void handleMessage(mavlink_message_t * msg) override;