pub type ScriptingCmd = ScriptingCmd;Expand description
Originally defined in ardupilotmega::enums::scripting_cmd
Aliased Type§
#[repr(u8)]pub enum ScriptingCmd {
ReplStart = 0,
ReplStop = 1,
Stop = 2,
StopAndRestart = 3,
}Variants§
ReplStart = 0
MAVLink enum entry SCRIPTING_CMD_REPL_START.
Start a REPL session.
ReplStop = 1
MAVLink enum entry SCRIPTING_CMD_REPL_STOP.
End a REPL session.
Stop = 2
MAVLink enum entry SCRIPTING_CMD_STOP.
Stop execution of scripts.
StopAndRestart = 3
MAVLink enum entry SCRIPTING_CMD_STOP_AND_RESTART.
Stop execution of scripts and restart.