转载:Pixhawk源码笔记一:APM代码基本结构

转自 新浪微博@WalkAnt

基础知识

详细参考:http://dev.ardupilot.com/wiki/learning-the-ardupilot-codebase/

第一部分:介绍

详细参考:http://dev.ardupilot.com/wiki/learning-ardupilot-introduction/

ArduPilot 代码分为5个主要部分,基本结构分类如下:

  • vehicle directories
  • AP_HAL
  • libraries
  • tools directories
  • external support code

1、vehicle directories模型类型

当前共有4种模型:ArduPlane, ArduCopter, APMrover2 and AntennaTracker。都是.pde文件,就是为了兼容arduino平台,以后可能会放弃。

2、AP_HAL硬件抽象层

硬件抽象层,使得在不同硬件平台上的移植变得简单。

其中AP_HAL目录定义了一个通用的接口。其他的目录AP_HAL_XXX针对不同硬件平台进行详细的定义。例如AP_HAL_AVR目录对于AVR平台,AP_HAL_PX4对应PX4平台,AP_HAL_Linux对应Linux平台。

3、tools directories工具目录

主要提供支持。For examples, tools/autotest provides the autotest infrastructure behind theautotest.diydrones.com site and tools/Replay provides our log replay utility.

4、external support code外部支持代码

对于其他平台,需要外部支持代码。例如Pixhawk、PX4的支持代码如下:

  • PX4NuttX – 板载实时系统。the core NuttX RTOS used on PX4 boards
  • PX4Firmware – PX4固件。the base PX4 middleware and drivers used on PX4 boards
  • uavcan – 飞行器CAN通信协议。the uavcan CANBUS implementation used in ArduPilot
  • mavlink – Mavlink通信协议。the mavlink protocol and code generator

5、系统编译

针对不同的硬件板,编译可以采用“make TARGET”的形式。

  • make apm1 – the APM1 board
  • make apm2 – the APM2 board
  • make px4-v1 – the PX4v1
  • make px4-v2 – the Pixhawk

如果要移植到新的硬件,可以在mk/targets.mk文件中添加。

比如: make apm2-octa -j8

或者: make px4-v2 -j8

采用8通道并行编译方式,针对APM、Pixhawk硬件板(AVR、STM32),编译八旋翼代码。

第二部分: 学习sketch例程代码

http://dev.ardupilot.com/wiki/learning-ardupilot-the-example-sketches/

sketch,是指使用 .pde 文件编写的主程序。

开始之前,你可以试着阅读、编译并运行下面的sketches

  • libraries/AP_GPS/examples/GPS_AUTO_test
  • libraries/AP_InertialSensor/examples/INS_generic
  • libraries/AP_Compass/examples/AP_Compass_test
  • libraries/AP_Baro/examples/BARO_generic
  • libraries/AP_AHRS/examples/AHRS_Test

例如,下面的编译方法,将在Pixhawk上安装AP_GPS例程sketch。

cd libraries/AP_GPS/examples/GPS_AUTO_test

make px4-clean

make px4-v2

make px4-v2-upload

正确理解sketch例程代码,我们以GPS_AUTO_test.pde代码为例(目录ardupilot\libraries\AP_GPS\examples\GPS_AUTO_test),主要几个特点:

1、 pde文件包含很多 includes;

2、 定义了 hal 引用声明;

3、 代码非常粗糙;

4、 setup() 和 loop()函数

1、include文件

pde文件转变为C++文件后,提供必要的库引用支持。

2、hal引用声明

定义如下:

const AP_HAL::HAL& hal = AP_HAL_BOARD_DRIVER;// pixhawk等价于AP_HAL_PX4

该定义,方便访问硬件接口,比如console终端、定时器、I2C、SPI接口等。

实际的定义是在HAL_PX4_Class.cpp中定义,如下:

const HAL_PX4 AP_HAL_PX4;

hal是针对 AP_HAL_PX4 的引用。

经常使用的方法如下:

  • 终端字符输出。hal.console->printf() and hal.console->printf_P() to print strings (use the _P to use less memory on AVR)
  • 获取当前运行时间。hal.scheduler->millis() and hal.scheduler->micros() to get the time since boot
  • 延时。hal.scheduler->delay() and hal.scheduler->delay_microseconds() to sleep for a short time
  • IO输入输出。hal.gpio->pinMode(), hal.gpio->read() and hal.gpio->write() for accessing GPIO pins
  • I2C操作,hal.i2c
  • SPI操作,hal.spi

3、setup()和loop()

每个sketch都有一个setup()和loop()函数。板子启动时,setup()被调用。这些调用都来自HAL代码中的main()函数调用(HAL_PX4_Class.cpp文件main_loop())。setup()函数只调用一次,用于初始化所有libraries。

Loop()循环被调用,执行主任务。

4、AP_HAL_MAIN()宏指令

每一个sketch(.pde文件)最底部,都有一个“AP_HAL_MAIN();”指令,它是一个HAL宏,用于定义一个C++ main函数,整个程序的入口。它真正的定义在AP_HAL_PX4_Main.h中。

#define AP_HAL_MAIN() \

extern "C" __EXPORT int SKETCH_MAIN(int argc, char * const argv[]); \

int SKETCH_MAIN(int argc, char * const argv[]) { \

                hal.init(argc, argv); \

return OK; \

}

作为程序的起点,在AP_HAL_MAIN()里,就正式调用了hal.init()初始化代码。

程序的执行过程就是:程序起点AP_HAL_MAIN() à hal.init()  à hal.main_loop() à sketch中的setup()和loop()。

时间: 2024-12-29 23:26:23

转载:Pixhawk源码笔记一:APM代码基本结构的相关文章

转载:Pixhawk源码笔记十:代码调度,使之定时运行

转自:新浪长沙@WalkAnt 第十一部分 调用代码,使之定时运行 英文参考:http://dev.ardupilot.com/wiki/code-overview-scheduling-your-new-code-to-run-intermittently/ 本节源自:http://liung.github.io/blog/apm/2014-09-05-APM-ArduCopter规划新代码使之按一定频率运行.html 1.用代码调度器(scheduler)运行你的代码 在给定时间间隔内来运行

转载:Pixhawk源码笔记二:APM线程

  转自:新浪@WalkAnt Pixhawk源码笔记一:APM代码基本结构,参见: http://blog.sina.com.cn/s/blog_402c071e0102v59r.html 这里,我们对 APM 线程进行讲解.如有问题,可以交流[email protected].新浪@WalkAnt,转载本博客文章,请注明出处,以便更大范围的交流,谢谢. 第三部分 APM线程 详细参考:http://dev.ardupilot.com/wiki/learning-ardupilot-threa

转载:Pixhawk源码笔记四:学习RC Input and Output

转自:新浪@WalkAnt 第五部分 学习RC Input and Output 参考:http://dev.ardupilot.com/wiki/learning-ardupilot-rc-input-output/ RC Input,也就是遥控输入,用于控制飞行方向.改变飞行模式.控制摄像头等外围装置.ArduPilot支持集中不同RC input(取决于具体的硬件飞控板): 1. PPMSum – on PX4, Pixhawk, Linux and APM2 2. SBUS – on P

转载:Pixhawk源码笔记三:串行接口UART和Console

转自:新浪@WalkAnt 第四部分 串行接口UART和Console 详细参考:http://dev.ardupilot.com/wiki/learning-ardupilot-uarts-and-the-console/ UART很重要,用于调试输出,数传.GPS模块等. 1.5个UART 目前共定义了5个UART,他们的用途分别是: uartA – 串行终端,通常是Micro USB接口,运行MAVLink协议. uartB – GPS1模块. uartC – 主数传接口,也就是Pixha

转载:Pixhawk源码笔记六:源码预览与APM:Copter程序库

转自:新浪@WalkAnt 第七部分 源代码预览与APM:Copter程序库 英文参考:http://dev.ardupilot.com/wiki/apmcopter-code-overview/ 本节来源:http://liung.github.io/blog/apm/2014-08-30-APM-Arducopter代码预览.html         APM::Copter代码主要放在ArduCopter文件夹中,并且和ArduPlane和ArduRover使用同样的库文件. 下面这张图展示

转载:Pixhawk源码笔记十一:增加新的MAVLink消息

转自:新浪长沙@WalkAnt 第十二部分 增加新的MAVLink消息 英文参考:http://dev.ardupilot.com/wiki/code-overview-adding-a-new-mavlink-message/ 本节源自:http://liung.github.io/blog/apm/2014-09-05-APM-增加新的MAVLink通讯协议消息.html MavLink协议:https://pixhawk.ethz.ch/mavlink/ 地面站之间的数据和指令通信都是通过

转载:Pixhawk源码笔记八:添加新的参数

转载:新浪@WalkAnt 第九部分 添加新的参数 英文参考:http://dev.ardupilot.com/wiki/code-overview-adding-a-new-parameter/ 本节源自:http://liung.github.io/blog/apm/2014-09-02-APM-添加新的参数.html 1 在主执行代码中添加参数         第一步:         Step #1: 在文件Parameters.h参数类中的枚举变量(enum)的合适位置,像下面代码块最

转载:Pixhawk源码笔记五:存储与EEPROM管理

转自:新浪@WalkAnt 第六部分 存储与EEPROM管理 详细参考:http://dev.ardupilot.com/wiki/learning-ardupilot-storage-and-eeprom-management/ 用户参数.航点.集结点.地图数据以及其他有用的信息需要存储.ArduPilot提供4个基本存储接口: 1.AP_HAL::Storage对象:hal.storage: 2.StorageManager库,是hal.storage更高级别的封装: 3.DataFlash

转载:Pixhawk源码笔记七:姿态控制预览

转自:新浪@WalkAnt 第八部分 姿态控制预览 英文参考:http://dev.ardupilot.com/wiki/apmcopter-programming-attitude-control-2/ 本节源自:http://liung.github.io/blog/apm/2014-08-31-APM-ArduCopter姿态控制概览.html 手动飞行模式,诸如自稳模式(Stabilize Mode).特技模式(Acro Mode).飘逸模式(Drift Mode),其程序结构如下图: