赞
踩
在没有任何硬件的情况下,SITL模拟运行Plane、Copter或Rover。提供了一个本地可执行文件(ArduCopter or ArduPlane Desktop Executable, elf),允许在没有硬件的情况下测试代码的行为。
该方法比较适合熟悉ardupilot系统,也便于研发人员验证软件算法方面的控制逻辑。
$ uname -r
5.15.76-051576-generic
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 22.04.2 LTS
Release: 22.04
Codename: jammy
$ sudo apt-get update
$ sudo apt-get upgrade
$ sudo apt-get install git gitk git-gui
$ git clone git@github.com:ArduPilot/ardupilot.git
$ git checkout Copter-4.3
$ git log -n 1
commit c33653cd4ebec780d6961c0bcbd42a38c787fb28 (HEAD -> Copter-4.3, origin/Copter-4.3)
Author: bugobliterator <siddharthbharatpurohit@gmail.com>
Date: Sat Mar 18 09:04:26 2023 +1100
bootloaders: add CubeOrangePlus-bdshot bootloader
$ cd ardupilot
$ git submodule update --init --recursive
$ Tools/environment_install/install-prereqs-ubuntu.sh -y
$ pwd
/home/daniel/Work/ardupilot
$ export PATH=$PATH:<ardupilot path>/Tools/autotest
$ export PATH=/usr/lib/ccache:$PATH
$ . ~/.profile
如果之前工程有过编译或者编译缺少组件导致失败,可以用以下命令对工程进行清理。
$ ./waf clean
配置SITL目标
$ ./waf configure --board sitl # software-in-the-loop simulator
or
$ ./waf configure --board sitl --debug # software-in-the-loop simulator with debug symbols
编译SITL目标
$ ./waf
第一次运行时,应该使用-w选项擦除虚拟EEPROM,加载正确的默认参数。
$ sim_vehicle.py -w -v ArduCopter
加载默认参数后,可以正常启动模拟器。
$ sim_vehicle.py --console --map -v ArduCopter
or
$ sim_vehicle.py --console --map -v ArduCopter --custom-location=30.3051391,120.1556749,8.71000003814697,90
注: Ctrl-C停止模拟器运行。
--no-mavproxy
启动模拟器$ sim_vehicle.py --console --map -v ArduCopter --custom-location=30.3051391,120.1556749,8.71000003814697,90 --no-mavproxy
注:有些小伙伴说自己的电脑上没有Map,没有Console;而且是重装ubuntu系统,按照本文的步骤安装的。最有可能得问题是可能没有安装过MAVProxy软件,详细请参考:《ArduPilot开源飞控之MAVProxy简介》
【1】Setting up SITL on Linux
【2】ArduPilot开源飞控之MAVProxy简介
【3】ubuntu22.04@laptop安装&配置wfb-ng
【4】ArduPilot飞控之Mission Planner模拟
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。