需要下载Ubuntu16.04 搭建APM 编译环境源码包的同学可从这里下载,源码中的.sh文件已做修改,包括APM源码和gcc软件包:
https://download.csdn.net/download/jlqiu2015/84515042
APM 版本4.0.7
参考:官网:https://ardupilot.org/dev/docs/building-setup-linux.html#building-setup-linux
帖子: https://blog.csdn.net/weixin_44622814/article/details/90021469
http://www.nufeichuiyun.com/?p=237
https://www.pythonheidong.com/blog/article/1317103/c4da7928551cf3c7c78e/
步骤:
- 安装ubuntu16.04, 软件源选择aliyun
- 加入组,然后注销再登入
sudo usermod -a -G dialout $USER - 安装git
先在终端依次输入
sudo apt-get update
sudo apt-get install git
sudo apt-get install gitk git-gui - 在home 根目录下克隆源码
git clone https://github.com/your-github-userid/ardupilot - 切换到分支,这里以copter4.0.7 为例
cd ardupilot
git checkout Copter-4.0.7 - 克隆关联组件,反复执行此命令,直到下载完成为止
git submodule update --init –recursive - 源