Skip to content

Commit cc78aa5

Browse files
New Crowdin translations - zh-CN (#25402)
Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
1 parent 1060d3a commit cc78aa5

35 files changed

+809
-188
lines changed

docs/zh/SUMMARY.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
- [静态压力生成](advanced_config/static_pressure_buildup.md)
3535
- [Flying (Basics)](flying/basic_flying_mc.md)
3636
- [整机](complete_vehicles_mc/index.md)
37-
- [ModalAI Starling](complete_vehicles_mc/modalai_starling.md)
37+
- [ModalAI Starling (PX4 Dev Kit)](complete_vehicles_mc/modalai_starling.md)
3838
- [PX4 视觉套件](complete_vehicles_mc/px4_vision_kit.md)
3939
- [MindRacer BNF & RTF](complete_vehicles_mc/mindracer_BNF_RTF.md)
4040
- [MindRacer 210](complete_vehicles_mc/mindracer210.md)
@@ -167,6 +167,7 @@
167167
- [Wiring Quickstart](assembly/quick_start_cuav_v5_plus.md)
168168
- [CUAV V5 nano (FMUv5)](flight_controller/cuav_v5_nano.md)
169169
- [CUAV V5 nano Wiring Quickstart](assembly/quick_start_cuav_v5_nano.md)
170+
- [CUAV X25 EVO](flight_controller/cuav_x25-evo.md)
170171
- [CubePilot Cube Orange+ (CubePilot)](flight_controller/cubepilot_cube_orangeplus.md)
171172
- [CubePilot Cube Orange (CubePilot)](flight_controller/cubepilot_cube_orange.md)
172173
- [CubePilot Cube Yellow (CubePilot)](flight_controller/cubepilot_cube_yellow.md)
@@ -233,6 +234,7 @@
233234
- [指南针动力补偿](advanced_config/compass_power_compensation.md)
234235
- [空速传感器](sensor/airspeed.md)
235236
- [Calibration](config/airspeed.md)
237+
- [Airspeed Validation](advanced_config/airspeed_validation.md)
236238
- [TFSlot Airspeed Sensor](sensor/airspeed_tfslot.md)
237239
- [Barometers](sensor/barometer.md)
238240
- [距离传感器 \(测距仪\)](sensor/rangefinders.md)
@@ -637,6 +639,7 @@
637639
- [MountOrientation](msg_docs/MountOrientation.md)
638640
- [NavigatorMissionItem](msg_docs/NavigatorMissionItem.md)
639641
- [NavigatorStatus](msg_docs/NavigatorStatus.md)
642+
- [NeuralControl](msg_docs/NeuralControl.md)
640643
- [NormalizedUnsignedSetpoint](msg_docs/NormalizedUnsignedSetpoint.md)
641644
- [ObstacleDistance](msg_docs/ObstacleDistance.md)
642645
- [OffboardControlMode](msg_docs/OffboardControlMode.md)
@@ -740,6 +743,7 @@
740743
- [EventV0](msg_docs/EventV0.md)
741744
- [HomePositionV0](msg_docs/HomePositionV0.md)
742745
- [VehicleAttitudeSetpointV0](msg_docs/VehicleAttitudeSetpointV0.md)
746+
- [VehicleLocalPositionV0](msg_docs/VehicleLocalPositionV0.md)
743747
- [VehicleStatusV0](msg_docs/VehicleStatusV0.md)
744748
- [MAVLink Messaging](mavlink/index.md)
745749
- [Adding Messages](mavlink/adding_messages.md)
@@ -883,8 +887,8 @@
883887

884888
- [版本发布](releases/index.md)
885889
- [main (alpha)](releases/main.md)
886-
- [1.16 (release candidate)](releases/1.16.md)
887-
- [1.15 (stable)](releases/1.15.md)
890+
- [1.16 (stable)](releases/1.16.md)
891+
- [1.15](releases/1.15.md)
888892
- [1.14](releases/1.14.md)
889893
- [1.13](releases/1.13.md)
890894
- [1.12](releases/1.12.md)

docs/zh/advanced/neural_networks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This is an experimental module.
77
Use at your own risk.
88
:::
99

10-
The Multicopter Neural Network (NN) module ([mc_nn_control](../modules/modules_controller.md#mc_nn_control)) is an example module that allows you to experiment with using a pre-trained neural network on PX4.
10+
The Multicopter Neural Network (NN) module ([mc_nn_control](../modules/modules_controller.md#mc-nn-control)) is an example module that allows you to experiment with using a pre-trained neural network on PX4.
1111
It might be used, for example, to experiment with controllers for non-traditional drone morphologies, computer vision tasks, and so on.
1212

1313
The module integrates a pre-trained neural network based on the [TensorFlow Lite Micro (TFLM)](../advanced/tflm.md) module.

docs/zh/advanced/nn_module_utilities.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Neural Network Module: System Integration
22

3-
The neural control module ([mc_nn_control](../modules/modules_controller.md#mc_nn_control)) implements an end-to-end controller utilizing neural networks.
3+
The neural control module ([mc_nn_control](../modules/modules_controller.md#mc-nn-control)) implements an end-to-end controller utilizing neural networks.
44

55
The parts of the module directly concerned with generating the code for the trained neural network and integrating it into the module are covered in [TensorFlow Lite Micro (TFLM)](../advanced/tflm.md).
66
This page covers the changes that were made to integrate the module into PX4, both within the module, and in larger system configuration.
@@ -14,7 +14,7 @@ For more information see the developer [Getting Started](../dev_setup/getting_st
1414

1515
## Autostart
1616

17-
A line to autostart the [mc_nn_control](../modules/modules_controller.md#mc_nn_control) module has been added in the [`ROMFS/px4fmu_common/init.d/rc.mc_apps`](https://github.com/PX4/PX4-Autopilot/blob/main/ROMFS/px4fmu_common/init.d/rc.mc_apps) startup script.
17+
A line to autostart the [mc_nn_control](../modules/modules_controller.md#mc-nn-control) module has been added in the [`ROMFS/px4fmu_common/init.d/rc.mc_apps`](https://github.com/PX4/PX4-Autopilot/blob/main/ROMFS/px4fmu_common/init.d/rc.mc_apps) startup script.
1818

1919
It checks whether the module is included by looking for the parameter [MC_NN_EN](../advanced_config/parameter_reference.md#MC_NN_EN).
2020
If this is set to `1` (the default value), the module will be started when booting PX4.

docs/zh/advanced/tflm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# TensorFlow Lite Micro (TFLM)
22

3-
The PX4 [Multicopter Neural Network](advanced/neural_networks.md) module ([mc_nn_control](../modules/modules_controller.md#mc_nn_control)) integrates a neural network that uses the [TensorFlow Lite Micro (TFLM)](https://github.com/tensorflow/tflite-micro) inference library.
3+
The PX4 [Multicopter Neural Network](advanced/neural_networks.md) module ([mc_nn_control](../modules/modules_controller.md#mc-nn-control)) integrates a neural network that uses the [TensorFlow Lite Micro (TFLM)](https://github.com/tensorflow/tflite-micro) inference library.
44

55
This is a mature inference library intended for use on embedded devices, and is hence a suitable choice for PX4.
66

7-
This guide explains how the TFLM library is integrated into the [mc_nn_control](../modules/modules_controller.md#mc_nn_control) module, and the changes you would have to make to use it for your own neural network.
7+
This guide explains how the TFLM library is integrated into the [mc_nn_control](../modules/modules_controller.md#mc-nn-control) module, and the changes you would have to make to use it for your own neural network.
88

99
:::tip
1010
For more information, see the [TFLM guide](https://ai.google.dev/edge/litert/microcontrollers/get_started).

0 commit comments

Comments
 (0)