Recall & Review
beginner
What does SITL stand for in ArduPilot?
SITL stands for Software In The Loop. It allows you to run ArduPilot's autopilot software on your computer without real hardware.
Click to reveal answer
beginner
Which command starts the ArduPilot SITL for a plane on Linux?
The command is
sim_vehicle.py -v ArduPlane -f plane --console --map. It launches the plane simulation with console and map windows.Click to reveal answer
beginner
Why do you need to install dependencies before running ArduPilot SITL?
Dependencies like Python packages and simulator tools are needed to run the simulation smoothly and connect different parts like the autopilot and the ground control station.
Click to reveal answer
intermediate
What is the role of MAVProxy in ArduPilot SITL setup?
MAVProxy acts as a ground control station interface. It helps you send commands and see telemetry data from the simulated vehicle.
Click to reveal answer
intermediate
How can you test different vehicle types in ArduPilot SITL?
You can change the vehicle type by using the
-v option with sim_vehicle.py, for example, -v ArduCopter for a copter or -v ArduRover for a rover.Click to reveal answer
What is the main purpose of ArduPilot SITL?
✗ Incorrect
SITL lets you run the autopilot software in simulation without needing real drone hardware.
Which tool is commonly used as a ground control station interface in SITL?
✗ Incorrect
MAVProxy is a command-line ground control station used with SITL to send commands and receive data.
What does the
--console option do when running sim_vehicle.py?✗ Incorrect
The
--console option opens a console window to type commands and see vehicle status.Before running SITL, why is it important to install dependencies?
✗ Incorrect
Dependencies provide necessary tools and libraries for SITL to work correctly.
How do you specify a rover vehicle in SITL using sim_vehicle.py?
✗ Incorrect
The
-v ArduRover option tells SITL to simulate a rover vehicle.Explain the steps to set up ArduPilot SITL on your computer.
Think about what you need before running the simulation and how to start it.
You got /5 concepts.
Describe how you can switch between different vehicle types in ArduPilot SITL.
Focus on the command line option that changes the vehicle.
You got /3 concepts.