mirror of https://github.com/ArduPilot/ardupilot
AP_Scripting: added vehicle:reboot() binding
This commit is contained in:
parent
4141dd5bbe
commit
19a46fff0f
|
@ -1938,6 +1938,10 @@ function vehicle:nav_script_time_done(param1) end
|
|||
---@return number|nil
|
||||
function vehicle:nav_script_time() end
|
||||
|
||||
-- desc
|
||||
---@param hold_in_bootloader boolean
|
||||
function vehicle:reboot(hold_in_bootloader) end
|
||||
|
||||
-- desc
|
||||
---@class onvif
|
||||
onvif = {}
|
||||
|
|
|
@ -276,6 +276,7 @@ singleton AP_Vehicle method nav_scripting_enable boolean uint8_t'skip_check
|
|||
singleton AP_Vehicle method set_velocity_match boolean Vector2f
|
||||
singleton AP_Vehicle method set_land_descent_rate boolean float'skip_check
|
||||
singleton AP_Vehicle method has_ekf_failsafed boolean
|
||||
singleton AP_Vehicle method reboot void boolean
|
||||
|
||||
include AP_SerialLED/AP_SerialLED.h
|
||||
singleton AP_SerialLED rename serialLED
|
||||
|
|
Loading…
Reference in New Issue