You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This section aims to get you from zero to flying with a barebones configuration for an airplane or quadcopter.
26
26
It will not delve into advanced features such as waypoint missions and return to home options.
27
27
@@ -32,4 +32,4 @@ This section will explain in greater detail all the options available with INAV
32
32
This explains the main features and tabs of INAV Configurator.
33
33
Detailed information on how to use each tab is explained in the relevant Modules section.
34
34
For example, all information on failsafes in the configurator are found in the Failsafes modules page.
35
-
You can use the Configurator page as the shortcuts page to find detailed information on a feature or module you are interested in adjusting to your setup.
35
+
You can use the Configurator page as the shortcuts page to find detailed information on a feature or module you are interested in adjusting to your setup.-->
It can be difficult for an aircraft builder to determine if a particular board / target will meet their needs.
137
+
138
+
In order to offer some guidance, the following list is machine generated from the files under `inav/source/main/target` to provide a list of the options offered by supported boards.
139
+
140
+
The usage is taken directly from the source code, the following interpretation is offered:
141
+
142
+
| Symbol | Interpretation |
143
+
| ------ | -------------- |
144
+
| MC_MOTOR | Multi-rotor motor |
145
+
| FW_MOTOR | Fixed wing motor |
146
+
| MC_SERVO | Multi-rotor servo |
147
+
| FW_SERVO | Fixed wing servo |
148
+
| LED | LED strip |
149
+
| PWM, ANY | Some other PWM function |
150
+
151
+
*List generated %s from the [inav master branch](https://github.com/iNavFlight/inav/) by [`parse_targets.rb`](http://seyrsnys.myzen.co.uk/parse_targets.rb). Some targets may not be available in official or prior releases.* **E&OE.**
152
+
153
+
You are strongly advised to check the board documentation as to the suitability of any particular board.
154
+
155
+
The configurations listed above are those supported by the inav developers; other configurations may be possible with a custom target. The source tree contains other, unofficial targets that may (or not) work.
156
+
157
+
Note also that due to the complexity of output options available in inav, dynamic resource allocation is not available. Paweł Spychalski has published a [video](https://www.youtube.com/watch?v=v4R-pnO4srU) explaining why resource allocation is not supported by inav; [see also #1154](https://github.com/iNavFlight/inav/issues/1145)
Copy file name to clipboardExpand all lines: versioned_docs/version-4.0.0/advanced/Boards,-Targets-and-PWM-allocations.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ The usage is taken directly from the source code, the following interpretation i
17
17
| LED | LED strip |
18
18
| PWM, ANY | Some other PWM function |
19
19
20
-
*List generated 2022-01-22 from the [inav master branch](https://github.com/iNavFlight/inav/) by [`parse_targets.rb`](assets/parse_targets.rb). Some targets may not be available in official or prior releases.***E&OE.**
20
+
*List generated 2022-01-22 from the [inav master branch](https://github.com/iNavFlight/inav/) by [`parse_targets.rb`](/img/content/parse_targets.rb). Some targets may not be available in official or prior releases.***E&OE.**
21
21
22
22
You are strongly advised to check the board documentation as to the suitability of any particular board.
Copy file name to clipboardExpand all lines: versioned_docs/version-4.0.0/features/Navigation-Mode-Return-to-Home.md
+14-14Lines changed: 14 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,89 +10,89 @@ With default settings RTH will land immediately if you are closer than 5 meters
10
10
11
11
Return to Home is activated by the NAV RTH flight mode.
12
12
13
-
# RTH Altitudes
13
+
##RTH Altitudes
14
14
15
15
There are two altitudes that can be used with RTH: _nav_rth_altitude_ and _nav_rth_home_altitude_.
16
16
17
17
_nav_rth_altitude_ is used in conjunction with the RTH Altitude control modes to decide the altitude that the model returns home at. See below to see how the two are combined.
18
18
19
19
_nav_rth_home_altitude_ sets the altitude that a plane will loiter at when it arrives at home. If above the _nav_rth_home_altitude_, the plane will start loitering, then loiter down to the home altitude. The default, 0, means that the feature is disabled. In which case the plane will loiter at the **Actual RTH Altitude**, or _nav_rth_altitude_ if linear descent is used.
20
20
21
-
# RTH Altitude control modes
21
+
##RTH Altitude control modes
22
22
23
23
RTH sequence can control altitude in several different ways, controlled by _nav_rth_alt_mode_ and _nav_rth_altitud_ (the altitude in centimetres) parameters.
24
24
25
25
Default setting is **NAV_RTH_AT_LEAST_ALT** - climb to preconfigured altitude if below, stay at current altitude if above.
26
26
27
-
## Maintain current altitude (NAV_RTH_NO_ALT)
27
+
###Maintain current altitude (NAV_RTH_NO_ALT)
28
28
-_nav_rth_alt_mode_ = **CURRENT**
29
29
-_nav_rth_altitude_ is ignored
30
30
31
31
The **Actual RTH Altitude** is the altitude that the model is currently flying at.
32
32
33
33

34
34
35
-
## Maintain current altitude + predefined safety margin (NAV_RTH_EXTRA_ALT)
35
+
###Maintain current altitude + predefined safety margin (NAV_RTH_EXTRA_ALT)
36
36
-_nav_rth_alt_mode_ = **EXTRA**
37
37
-_nav_rth_altitude_ defines extra altitude margin
38
38
39
39
The **Actual RTH Altitude** is the altitude that the model is currently flying at, plus the _nav_rth_altitude_.
40
40
41
41

If the model is below _nav_rth_altitude_ it will climb to desired altitude prior to flying back home. If the model is above the desired altitude, it will turn and fly home and descend on the way. That defines the **Actual RTH Altitude**.
## Maximum altitude since launch (NAV_RTH_MAX_ALT)
51
+
###Maximum altitude since launch (NAV_RTH_MAX_ALT)
52
52
-_nav_rth_alt_mode_ = **MAX**
53
53
-_nav_rth_altitude_ is ignored
54
54
55
55
The **Actual RTH Altitude** is the highest altitude during the flight.
56
56
57
57

58
58
59
-
## At least predefined altitude above launch point (NAV_RTH_AT_LEAST_ALT)
59
+
###At least predefined altitude above launch point (NAV_RTH_AT_LEAST_ALT)
60
60
-_nav_rth_alt_mode_ = **AT_LEAST**
61
61
-_nav_rth_altitude_ defines the minimum RTH altitude above launch point.
62
62
63
63
If the aircraft is below _nav_rth_altitude_ it will climb to desired altitude prior to flying back home. If the model is above the desired altitude, it will turn and fly home at the current altitude. This defines the **Actual RTH Altitude**.
64
64
65
65

66
66
67
-
## Predefined altitude linear descent (NAV_RTH_AT_LEAST_ALT_LINEAR_DESCENT)
67
+
###Predefined altitude linear descent (NAV_RTH_AT_LEAST_ALT_LINEAR_DESCENT)
If the aircraft is below _nav_rth_altitude_ it will climb to desired altitude prior to flying back home. If the model is above the desired altitude, it will turn and fly home, and descend on the way (on a linear straight line). This defines the **Actual RTH Altitude**. Aircraft will descend in a way that it'll reach the _nav_rth_altitude_ altitude only when it reaches the home point. So aircraft can save energy by doing an easy descend on it's way back home.
72
72
73
73

74
74
75
-
# Climb first
75
+
##Climb first
76
76
77
77
The _nav_rth_climb_first_ option sets how the model will initiate the **RTH**.
78
78
79
-
## Climb first with Multirotors
79
+
###Climb first with Multirotors
80
80
81
81
- If _nav_rth_climb_first_ = **OFF**, the multirotor will turn to home, and immediately fly towards it, climbing on the way to the **Actual RTH Altitude**.
82
82
- If _nav_rth_climb_first_ = **ON**, the multirotor hover and increase altitude. When it reaches the **Actual RTH altitude**, it will fly towards home.
83
83
84
-
## Climb first with Fixed Wing
85
-
### _nav_rth_climb_first_ = **OFF**
84
+
###Climb first with Fixed Wing
85
+
####_nav_rth_climb_first_ = **OFF**
86
86
The plane will turn towards home, and climb to the **Actual RTH altitude** on the homeward journey.
The plane climb to the **Actual RTH altitude** in the direction it is currently flying. Once the **Actual RTH Altitude** is reached, it will turn and fly towards home.
-[NAV RTH - Return to home](#rth---return-to-home)
@@ -16,7 +16,7 @@ This page lists and explains all the different navigational flight modes of iNav
16
16
-[GCS NAV - Ground control station](#gcs_nav---ground-control-station)
17
17
18
18
For safety reasons, INAV’s navigation modes can be activated only if:
19
-
- ACC and MAG (multirotor only) are [calibrated](https://github.com/iNavFlight/inav/wiki/Sensor-calibration) properly
19
+
- ACC and MAG (multirotor only) are [calibrated](../quickstart/Sensor-calibration.md) properly
20
20
- a valid 3D GPS fix is available
21
21
- a valid altitude source is available
22
22
- the FC is armed
@@ -160,7 +160,7 @@ RTH will attempt to bring copter/plane to launch position. Launch position is de
160
160
161
161
With default settings RTH will land immediately if you are closer than 5 meters from launch position. If further away it will make sure to have at least 10 meters of altitude, then start going home at 3m/s, and land. It will disarm itself if so configured, otherwise you will have to manually disarm once on the ground.
162
162
163
-
There are many different modes for Altitude, see the [RTH mode page](./Navigation-Mode:-Return-to-Home.md#rth-altitude-control-modes) for details.
163
+
There are many different modes for Altitude, see the [RTH mode page](./Navigation-Mode-Return-to-Home.md#rth-altitude-control-modes) for details.
Copy file name to clipboardExpand all lines: versioned_docs/version-4.0.0/quickstart/Fixed-Wing-Guide.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -155,7 +155,7 @@ At this point everything should work as expected.
155
155
156
156
* Adjust ``set roll_rate`` and ``set pitch_rate`` to the flight characteristics of your plane. For a race wing values like ``set roll_rate = 36`` and ``set pitch_rate = 18`` are a good starting point.
157
157
158
-
* Set your [RTH mode](../features/Navigation-Mode:-Return-to-Home.md) to your liking
158
+
* Set your [RTH mode](../features/Navigation-Mode-Return-to-Home.md) to your liking
159
159
160
160
* Increase ``set nav_fw_bank_angle`` for tighter turns.
0 commit comments