diff --git a/libraries/AP_HAL/RCOutput.h b/libraries/AP_HAL/RCOutput.h index 2dfff6f270..529621e12e 100644 --- a/libraries/AP_HAL/RCOutput.h +++ b/libraries/AP_HAL/RCOutput.h @@ -112,7 +112,13 @@ public: enable SBUS out at the given rate */ virtual bool enable_sbus_out(uint16_t rate_gz) { return false; } - + + /* + * Optional method to control the update of the motors. Derived classes + * can implement it if their HAL layer requires. + */ + virtual void timer_tick(void) { } + /* output modes. Allows for support of oneshot */