|
|
@ -132,7 +132,8 @@ void AC_Sprayer::update() |
|
|
|
// velocity will already be zero but this avoids a coverity warning
|
|
|
|
// velocity will already be zero but this avoids a coverity warning
|
|
|
|
velocity.zero(); |
|
|
|
velocity.zero(); |
|
|
|
} |
|
|
|
} |
|
|
|
float ground_speed = norm(velocity.x * 100.0f, velocity.y * 100.0f); |
|
|
|
|
|
|
|
|
|
|
|
float ground_speed = velocity.xy().length() * 100.0; |
|
|
|
|
|
|
|
|
|
|
|
// get the current time
|
|
|
|
// get the current time
|
|
|
|
const uint32_t now = AP_HAL::millis(); |
|
|
|
const uint32_t now = AP_HAL::millis(); |
|
|
|