mirror of https://github.com/ArduPilot/ardupilot
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
|
||||
local last_warning = get_time()
|
||||
function update()
|
||||
if QUIK_ENABLE:get() < 1 then
|
||||
return
|
||||
end
|
||||
if have_pilot_input() then
|
||||
last_pilot_input = get_time()
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue