Linux系统ubuntu20.04 无人机PX4 开发环境搭建(失败率很低)

PX4固件下载

PX4的源码处于GitHub,因为众所周知的原因git clone经常失败,此处从Gitee获取PX4源码和依赖模块。

git clone https://gitee.com/voima/PX4-Autopilot.git

正克隆到 ‘PX4-Autopilot’…

remote: Enumerating objects: 454209, done.

remote: Total 454209 (delta 0), reused 0 (delta 0), pack-reused 454209

接收对象中: 100% (454209/454209), 215.48 MiB | 2.32 MiB/s, 完成.

处理 delta 中: 100% (334699/334699), 完成.

图片

图片

使用cd命令切换到 px4项目文件目录:

cd ~/PX4-Autopilot

使用以下命令切换版本,以V1.14.0为例:

git checkout v1.14.0 #切换到1.14.0分支,当然也可以尝试其他版本

因为PX4的完整项目是嵌套子模块存储的,以上命令只下载了px4的基本代码,所以我们要进行子模块的下载,运行下列命令:

git submodule update --init --recursive # 在~/PX4-Autopilot目录下执行

以上命令中,submodule是子模块的意思, —init 选项会初始化,并注册子模块的地址,—recursive选项会递归克隆子模块。

此更新的链接来源于

~/PX4-Autopilot/.gitmodules(注意是隐藏文件)

将文件打开,粘贴到下面,可以看到里面都github的地址,直接用上面的命令,会很难成功

[submodule "src/modules/mavlink/mavlink"]    path = src/modules/mavlink/mavlink    url = https://github.com/mavlink/mavlink.git    branch = master[submodule "src/drivers/uavcan/libuavcan"]    path = src/drivers/uavcan/libuavcan    url = https://github.com/dronecan/libuavcan.git    branch = main[submodule "Tools/simulation/jmavsim/jMAVSim"]    path = Tools/simulation/jmavsim/jMAVSim    url = https://github.com/PX4/jMAVSim.git    branch = main[submodule "Tools/simulation/gazebo-classic/sitl_gazebo-classic"]    path = Tools/simulation/gazebo-classic/sitl_gazebo-classic    url = https://github.com/PX4/PX4-SITL_gazebo-classic.git    branch = main[submodule "src/drivers/gps/devices"]    path = src/drivers/gps/devices    url = https://github.com/PX4/PX4-GPSDrivers.git    branch = main[submodule "platforms/nuttx/NuttX/nuttx"]    path = platforms/nuttx/NuttX/nuttx    url = https://github.com/PX4/NuttX.git    branch = px4_firmware_nuttx-10.3.0+-v1.14[submodule "platforms/nuttx/NuttX/apps"]    path = platforms/nuttx/NuttX/apps    url = https://github.com/PX4/NuttX-apps.git    branch = px4_firmware_nuttx-10.3.0+[submodule "Tools/flightgear_bridge"]    path = Tools/simulation/flightgear/flightgear_bridge    url = https://github.com/PX4/PX4-FlightGear-Bridge.git[submodule "Tools/simulation/jsbsim/jsbsim_bridge"]    path = Tools/simulation/jsbsim/jsbsim_bridge    url = https://github.com/PX4/px4-jsbsim-bridge.git[submodule "src/drivers/cyphal/libcanard"]    path = src/drivers/cyphal/libcanard    url = https://github.com/opencyphal/libcanard.git[submodule "src/drivers/cyphal/public_regulated_data_types"]    path = src/drivers/cyphal/public_regulated_data_types    url = https://github.com/opencyphal/public_regulated_data_types.git[submodule "src/drivers/cyphal/legacy_data_types"]    path = src/drivers/cyphal/legacy_data_types    url = https://github.com/PX4/public_regulated_data_types.git    branch = legacy[submodule "src/lib/crypto/monocypher"]    path = src/lib/crypto/monocypher    url = https://github.com/PX4/Monocypher.git    branch = px4[submodule "src/lib/events/libevents"]    path = src/lib/events/libevents    url = https://github.com/mavlink/libevents.git    branch = main[submodule "src/lib/crypto/libtomcrypt"]    path = src/lib/crypto/libtomcrypt    url = https://github.com/PX4/libtomcrypt.git    branch = px4[submodule "src/lib/crypto/libtommath"]    path = src/lib/crypto/libtommath    url = https://github.com/PX4/libtommath.git    branch = px4[submodule "src/modules/uxrce_dds_client/Micro-XRCE-DDS-Client"]    path = src/modules/uxrce_dds_client/Micro-XRCE-DDS-Client    url = https://github.com/PX4/Micro-XRCE-DDS-Client.git    branch = px4

将其更新为 gitee 的地址,已经整理测试好了,直接替换掉文件的内容即可

​​​​​​​

[submodule "src/modules/mavlink/mavlink"]    path = src/modules/mavlink/mavlink    url = https://gitee.com/wtp95/mavlink.git    branch = master[submodule "Tools/flightgear_bridge"]    path = Tools/simulation/flightgear/flightgear_bridge    url = https://gitee.com/seokhb/PX4-FlightGear-Bridge.git[submodule "Tools/simulation/gazebo-classic/sitl_gazebo-classic"]    path = Tools/simulation/gazebo-classic/sitl_gazebo-classic    url = https://gitee.com/seokhb/PX4-SITL_gazebo-classic.git    branch = main[submodule "Tools/simulation/jmavsim/jMAVSim"]    path = Tools/simulation/jmavsim/jMAVSim    url = https://gitee.com/seokhb/jMAVSim.git    branch = main[submodule "Tools/simulation/jsbsim/jsbsim_bridge"]    path = Tools/simulation/jsbsim/jsbsim_bridge    url = https://gitee.com/seokhb/px4-jsbsim-bridge.git[submodule "platforms/nuttx/NuttX/apps"]    path = platforms/nuttx/NuttX/apps    url = https://gitee.com/seokhb/NuttX-apps.git    branch = px4_firmware_nuttx-10.3.0+[submodule "platforms/nuttx/NuttX/nuttx"]    path = platforms/nuttx/NuttX/nuttx    url = https://gitee.com/seokhb/NuttX.git    branch = px4_firmware_nuttx-10.3.0+-v1.14[submodule "src/drivers/cyphal/public_regulated_data_types"]    path = src/drivers/cyphal/public_regulated_data_types    url = https://gitee.com/seokhb/public_regulated_data_types.git[submodule "src/drivers/cyphal/legacy_data_types"]    path = src/drivers/cyphal/legacy_data_types    url = https://gitee.com/jiyuanwangxs/legacy_data_types.git    branch = legacy[submodule "src/drivers/cyphal/libcanard"]    path = src/drivers/cyphal/libcanard    url = https://gitee.com/seokhb/libcanard.git[submodule "src/drivers/gps/devices"]    path = src/drivers/gps/devices    url = https://gitee.com/seokhb/PX4-GPSDrivers.git    branch = main[submodule "src/drivers/uavcan/libuavcan"]    path = src/drivers/uavcan/libuavcan    url = https://gitee.com/seokhb/libuavcan.git[submodule "src/lib/crypto/libtomcrypt"]    path = src/lib/crypto/libtomcrypt    url = https://gitee.com/seokhb/libtomcrypt.git    branch = px4[submodule "src/lib/crypto/libtommath"]    path = src/lib/crypto/libtommath    url = https://gitee.com/seokhb/libtommath.git    branch = px4[submodule "src/lib/crypto/monocypher"]    path = src/lib/crypto/monocypher    url = https://gitee.com/seokhb/Monocypher.git    branch = px4[submodule "src/lib/events/libevents"]    path = src/lib/events/libevents    url = https://gitee.com/seokhb/libevents.git    branch = main[submodule "src/modules/uxrce_dds_client/Micro-XRCE-DDS-Client"]    path = src/modules/uxrce_dds_client/Micro-XRCE-DDS-Client    url = https://gitee.com/seokhb/Micro-XRCE-DDS-Client.git    branch = px4

然后执行下面的命令,就可以

git submodule update --init --recursive

有的子模块还是走的github,失败了就多试几次,直到用上面命令不再下载东西了就可以了

图片

点击Linux系统ubuntu20.04 无人机PX4 开发环境搭建(失败率很低)可查看全文 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/412038.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Apache CloudStack Official Document 翻译节选(十二)

快速部署一朵 Apache CloudStack 云 (一) 部署前的准备工作 Apache CloudStack快速部署指南 我们究竟在构建什么? 构建IAAS云是一件很复杂的事项,根据相关定义,构建IAAS云的可选项有很多。这些纷繁复杂的概念通常给…

WLAN原理实验简述——AP上线

一、需求: AP通过AC上线。 AC通过控制VLAN管理AP,创建VLAN100和放行。 AP同AC建立CAPWAP关系。 二、实验拓扑图: 三、实验步骤: LSW1: sys Enter system view, return user view with CtrlZ. [Huawei]Sysname lsw1 [lsw1]undo info enable I…

扩散模型(Diffusion Model)

扩散模型(diffusion model)是一种运用了物理热力学扩散思想的生成模型。扩散模型有很多不同的变形,本文主要介绍最知名的去噪扩散概率模型(Denoising Diffusion Probabilistic Model,DDPM)。如今比较成功的…

Notepad++回车不自动补全

问题 使用Notepad时,按回车经常自动补全,但我们希望回车进行换行,而不是自动补全,而且自动补全使用Tab进行补全足够了。下文介绍设置方法。 设置方法 打开Notepad,进入设置 - 首选项 - 自动完成,在插入选…

Windows上MSYS2的安装和使用

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档 文章目录 前言一、下载二、安装三、使用1.打开命令行2.搜索软件3.安装软件4.卸载软件5.更新环境6.其他四、MSYS2和Cygwin的差别总结前言 MSYS2这个工具我是越用越喜欢,很多东西放在Linux上如鱼得水但是放在…

禁止文件外发 | 如何禁止员工外发文件?严守企业机密,禁止员工外发敏感文件!

近期,我们注意到一些敏感项目资料有外泄的风险,这对公司的核心竞争力构成了严重威胁! 我们必须立即采取行动,严守企业机密,确保每一份文件都安全无虞。 从今天起,我们要全面升级信息安全措施,…

2024世界机器人大会盛大开幕,卓翼飞思携无人智能领域产品集中亮相 !

开放创新 聚享未来!万众瞩目的2024世界机器人大会暨博览会于8月21日在北京亦创国际会展中心盛大开幕。大会聚焦机器人技术与产业前沿趋势,展示机器人创新应用赋能千行百业的多元场景,全球顶尖的机器人科学家、行业领袖、创新精英汇聚一堂&…

React学习day04-useEffect、自定义Hook函数

11、useEffect(一个React Hook函数) (1)作用:用于在React组件中创建不是由事件引起而是由渲染本身引起的操作,比如发送AJAX请求,更改DOM等(即:视图渲染完后会触发一些事…

前端开发,太难啦!

声明:此篇为 ai123.cn 原创文章,转载请标明出处链接:https://ai123.cn/#1 《黑神话:悟空》作为一款国产3A游戏,其前端开发的游戏界面和交互设计复杂度极高,这要求开发团队与设计师之间进行紧密合作&#xf…

嵌入式Qt移植之tslib部署到Busybox根文件-思维导图-学习笔记-基于正点原子阿尔法开发板

嵌入式Qt移植之tslib部署到Busybox根文件 烧写Busybox根文件系统到开发板 准备好一个固化系统 以TF卡为例子 TF 卡用读卡器插到 Ubuntu 虚拟机 会出现两个分区 boot分区是存放内核和设备树这些 rootfs分区是存放文件系统的 eMMC、NADA FLASH或者其他方式挂载也可&#xf…

中国严肃游戏开发的最佳实践

严肃游戏产业在中国迅速发展,将娱乐与教育、培训和宣传活动融为一体。旨在实现特定学习成果或行为改变的严肃游戏在从企业培训到医疗保健和教育的各个领域越来越受欢迎。然而,为中国市场开发成功的严肃游戏需要深入了解当地文化、用户偏好和技术趋势。以…

[000-01-001].第04节:Shell中的内置命令

5、Shell内置命令:alias设置别名 目标 1.理解内置命令的含义 2.能够使用alias内置命令进行给命令定义别名 内置命令介绍 Shell 内置命令,就是由 Bash Shell 自身提供的命令,而不是文件系统中的可执行脚本文件。 使用type 来确定一个命令…

恶意代码防范技术原理

恶意代码概述 定义与分类 恶意代码:指违背目标安全策略的程序代码,会造成目标系统信息泄露、资源滥用,破坏系统的完整性及可用性。 传播途径:经过存储介质或网络进行传播,在计算机系统之间传播,未经授权…

【Word与WPS如何冻结首行首列及窗口】

1.Word如何冻结首行首列及窗口 microsoft word 中锁定表头是一项实用的功能,可让您在滚动文档时保持表头可见。这在处理大型文档或包含大量数据的表格时非常有用。php小编柚子将为您详细介绍 word 锁定表头位置的方法,帮助您轻松掌握这项实用技巧。 1.…

认知杂谈43

今天分享 有人说的一段争议性的话 I I 年轻:潜力如海,挑战重重,绝非轻易挥霍的资本 I 咱都觉得年轻好像一张白纸,能在上面画出精彩人生呢。可实际上,年轻可不是啥简单的好事儿,它更像是个宝库&#xff0…

x264 编码器 AArch64汇编系列:DCT 变换相关汇编函数

DCT变换 在x264_dct_init函数中初始化具体的 dct 实现函数。 4x4 块DCT 变换 c 语言版本实现 4x4DCT 变换函数:sub4x4_dct。pixel_sub_wxh 函数: 这个函数的作用是从两个像素块中减去一个像素块,得到差分值,这些差分值将用于DCT变换。参数: diff:指向存储结果差分值的数组…

OHIF Viewers 项目介绍

项目结构 项目架构 │ ├── extensions │ ├── default # 默认功能 │ ├── cornerstone # 使用 Cornerstonejs 处理 2D/3D 图像 │ ├── cornerstone-dicom-sr # 结构化报告 (DICOM SR) │ ├── measurement-tracking # 测量追…

FTP服务器(服务名vsftpd,端口tcp/20和tcp/21)

目录 前言 配置文件 FTP服务器的配置 FTP服务的下载 配置防火墙 编辑配置文件 常用字段: 常用字段(匿名用户): 常用字段(系统用户): 指定系统用户访问: 编辑名单/etc/vsf…

leetcode_001_两数之和解析

两数之和解析 题目: 给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target 的那 两个 整数,并返回它们的数组下标。你可以假设每种输入只会对应一个答案,并且你不能使用两次相同的元素。你可以按任意顺序…

代码随想录(day8)—环形链表

题目 预备知识点: for和while的区别 while语句属于循环语句,在判断是,如果条件为true,则会继续判断,直到false为止,即会进行多次判断(除非一开始条件就是错的)。 if语句属于条件判…