diff --git a/libraries/AP_Mount/AP_Mount_SToRM32.cpp b/libraries/AP_Mount/AP_Mount_SToRM32.cpp index 2b1c8b36ce..38d4decc58 100644 --- a/libraries/AP_Mount/AP_Mount_SToRM32.cpp +++ b/libraries/AP_Mount/AP_Mount_SToRM32.cpp @@ -31,14 +31,6 @@ void AP_Mount_SToRM32::update() return; } - // throttle updates to 10hz (this assumes update is called at 50hz) - static uint8_t counter = 0; - counter++; - if (counter < 5) { - return; - } - counter = 0; - // flag to trigger sending target angles to gimbal bool resend_now = false;