PX4 / PX4-user_guide

PX4 User Guide
https://docs.px4.io/main/en/index.html
Other
285 stars 1.58k forks source link

Introduction of the Kconfig definition file in "Development/Writing your First Application" is incorrect #3093

Closed georgenwpu closed 4 months ago

georgenwpu commented 4 months ago

The title of the incorrect content is "First Application Tutorial (Hello Sky)".

In the Minimal Application section, Step 4. The original content is: _Create and open a new Kconfig definition file named Kconfig and define your symbol for naming (see Kconfig naming convention). Copy in the text below:_

P
"
n
-
p

The code is the last letter of each line. The correct code should be:

menuconfig EXAMPLE_PX4_SIMPLE_APP
    bool "PX4_SIMPLE_APP"
    default n
    ---help---
        Enable support for px4_simple_app
hamishwillee commented 4 months ago

@georgenwpu Thanks very much for taking the time to report this. Fixed in https://github.com/PX4/PX4-user_guide/pull/3103