Skip to content

Commit

Permalink
调整了用户手册部分逻辑
Browse files Browse the repository at this point in the history
Signed-off-by: latercomer <latercomer@qq.com>
  • Loading branch information
ComerLater committed Oct 5, 2024
1 parent 2ce7660 commit a3e8924
Show file tree
Hide file tree
Showing 10 changed files with 57 additions and 6 deletions.
20 changes: 18 additions & 2 deletions docs/develop/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

本节介绍 如何搭建开发环境、底层框架是什么样的、如何支持新的机型和设备、如何修改飞行控制算法、如何添加新模式、如何集成新硬件以及飞控与外部通信是怎么实现的等。

## 如何开始

- 如何快速入门,比如:[搭建开发环境](./01.快速入门/01.setup-develop-environment.md)[编译项目代码](01.快速入门/02.build-code.md)[断点单步调试](./01.快速入门/03.ide-debug.md)

- 系统框架介绍,比如:[系统启动流程](./03.系统框架/03.system-startup.md)[FINSH终端](./03.系统框架/05.finsh-console.md)[ULOG日志](./03.系统框架/07.micro-log.md)
Expand All @@ -21,14 +23,28 @@

- 如何调试分析

## 社区支持
## 获取帮助

核心开发团队和社区成员活跃于以下渠道,您可以从以下方式获得帮助。

问题反馈:<https://github.com/nextpilot/nextpilot-flight-control/issues>

代码提交:<https://github.com/nextpilot/nextpilot-flight-control/pulls>

论坛讨论:<https://github.com/nextpilot/nextpilot-flight-control/discussions>

## 反馈问题

如果您在使用 NextPilot 时遇到任何问题,请先在 [Github Discussions](https://github.com/nextpilot/nextpilot-flight-control/discussions) 上发布帖子(因为它们可能是由飞控配置引起的)。

根据开发团队指导,如果确定是代码问题则需要在 [Github Issue](https://github.com/nextpilot/nextpilot-flight-control/issues) 上反馈问题。如果可能,请提供[飞行日志](https://logs.px4.io)和其他信息。

## 开源许可

[BSD 3-clause](https://opensource.org/licenses/BSD-3-Clause) 许可证的条款,您可以免费使用和修改 [nextpilot-flight-control](https://github.com/nextpilot/nextpilot-flight-control) 代码,没有任何商业风险。

本文档采用 [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) 协议。

## 致谢

开发文档中,借用了 [PX4 用户指南](https://gitee.com/rtthread/docs-online)[RT-Thread 在线文档](https://gitee.com/rtthread/docs-online) 等部分资料,在此表示感谢。
开发文档中,借用了 [PX4 用户指南](https://docs.px4.io)[RT-Thread 在线文档](https://gitee.com/rtthread/docs-online) 等部分资料,在此表示感谢。
2 changes: 1 addition & 1 deletion docs/manual/01.快速入门/flight_controller_selection.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 支持的硬件
# 硬件支持

Flight controllers are the "brains" of an unmanned vehicle.
Nextpilot can run on [many flight controller boards](../flight_controller/README.md).
Expand Down
2 changes: 1 addition & 1 deletion docs/manual/01.快速入门/frame_selection.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 支持的机架
# 机架支持

PX4 supports air, surface, and submersible vehicles.
You can see a full list of the vehicle types and variants ("frames") that have been tested/tuned for use with PX4 here: [Airframe Reference](../airframes/airframe_reference.md).
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Flight Controller/Sensor Orientation
# 安装方向

By default the flight controller and external compass(es) (if present) should be placed on the frame top-side up, oriented so that the arrow points towards the front of the vehicle.
If the board or any external compasses are mounted in any other orientation then you will need configure this in the firmware.
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
37 changes: 36 additions & 1 deletion docs/manual/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
# 用户手册

Nextpilot是一款基于RT-Thread和PX4的国产专业飞控系统。
NextPilot飞控系统是一款功能丰富、高度扩展、稳定可靠的国产先进自动驾驶仪。能够便捷的应用于教育、研究和工业等领域,让工程师专注于自己的擅长领域(比如嵌入式、控制算法、应用业务)进行高效的开发。

!!! note
本手册包含了组装、配置和安全飞行基于 NextPilot 的无人机所需的一切,如果您对贡献项目感兴趣,请查看 [开发指南](../develop/) 部分。

## 如何开始

### 想使用 NextPilot 进行飞行

### 想适配 NextPilot 到新硬件

## 获取帮助

核心开发团队和社区成员活跃于以下渠道,您可以从以下方式获得帮助。

交流论坛:<https://github.com/nextpilot/nextpilot-flight-control/discussions>

问题反馈:<https://github.com/nextpilot/nextpilot-flight-control/issues>

提交代码:<https://github.com/nextpilot/nextpilot-flight-control/pulls>

## 反馈问题

如果您在使用 NextPilot 时遇到任何问题,请先在 [Github Discussions](https://github.com/nextpilot/nextpilot-flight-control/discussions) 上发布帖子(因为它们可能是由飞控配置引起的)。

根据开发团队指导,如果确定是代码问题则需要在 [Github Issue](https://github.com/nextpilot/nextpilot-flight-control/issues) 上反馈问题。如果可能,请提供[飞行日志](https://logs.px4.io)和其他信息。

## 开源许可

[BSD 3-clause](https://opensource.org/licenses/BSD-3-Clause) 许可证的条款,您可以免费使用和修改 [nextpilot-flight-control](https://github.com/nextpilot/nextpilot-flight-control) 代码,没有任何商业风险。

本文档采用 [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) 协议。

## 致谢

用户手册中,大量借用了 [PX4 用户指南](https://docs.px4.io)中的内容,在此表示感谢。

0 comments on commit a3e8924

Please sign in to comment.