Skip to content

Latest commit

 

History

History
57 lines (38 loc) · 3.66 KB

flight_reporting.md

File metadata and controls

57 lines (38 loc) · 3.66 KB

飞行报告

PX4 logs detailed aircraft state and sensor data, which can be used to analyze performance issues. This topic explains how you can download and analyse logs, and share them with the development team for review.

:::tip Keeping flight logs is a legal requirement in some jurisdictions. :::

从飞行控制器下载日志

Logs can be downloaded using QGroundControl: Analyze View > Log Download.

Flight Log Download

分析日志

Upload the log file to the online Flight Review tool. After upload you'll emailed a link to the analysis page for the log.

Log Analysis using Flight Review explains how to interpret the plots, and can help you to verify/reject the causes of common problems: excessive vibration, poor PID tuning, saturated controllers, imbalanced vehicles, GPS noise, etc.

:::note There are many other great tools for visualising and analysing PX4 Logs. For more information see: Flight Analysis. :::

:::tip If you have a constant high-rate MAVLink connection to the vehicle (not just a telemetry link) then you can use QGroundControl to automatically upload logs directly to Flight Review. For more information see Settings > MAVLink Settings > MAVLink 2 Logging (PX4 only). :::

给 PX4 开发人员共享日志文件

The Flight Review log file link can be shared for discussion in the support forums or a Github issue.

Log Configuration

The logging system is configured by default to collect sensible logs for use with Flight Review.

Logging may further be configured using the SD Logging parameters. The parameters you are most likely to change are listed below.

参数 描述
SDLOG_MODE 日志模式定义日志何时开始和停止。
  • 0:解锁时开始记录直到加锁 (默认)。
  • 1:系统启动开始记录直到加锁。
  • 2:系统启动时开始记录直到断电。 | | SDLOG_PROFILE | 日志配置文件。 使用此功能可以进行不太常见的日志/分析 (例如,用于 EKF2 重放、用于 PID 和过滤器调优的高速率日志记录、热温度校准)。 | | SDLOG_MISSION | 创建非常小的额外“任务日志”。
    此日志 能使用 Flight Review,但当您需要一个用于地理标记或法规遵从性的小日志时,该日志非常有用。 |

:::note Developers can further configure what information is logged via the logger module (you would use this, for example, if you want to log your own topics). For more information see: Logging. :::

主链接