mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-09 01:18:29 -04:00
AP_Scripting: fixed use of QUIK_ENABLE in VTOL-quicktune
this was lost when the cached access was added
This commit is contained in:
parent
d8bcb41b26
commit
3aea282bdd
@ -484,6 +484,9 @@ end
|
|||||||
-- main update function
|
-- main update function
|
||||||
local last_warning = get_time()
|
local last_warning = get_time()
|
||||||
function update()
|
function update()
|
||||||
|
if QUIK_ENABLE:get() < 1 then
|
||||||
|
return
|
||||||
|
end
|
||||||
if have_pilot_input() then
|
if have_pilot_input() then
|
||||||
last_pilot_input = get_time()
|
last_pilot_input = get_time()
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user