Skip to content

Commit 148db57

Browse files
Merge pull request #1338 from iNavFlight/oleost-new-default-fw-climb
new default climb angle for fixedwing
2 parents 808b494 + 1037bdd commit 148db57

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: docs/Cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ Re-apply any new defaults as desired.
195195
| nav_fw_launch_motor_delay | 500 | Delay between detected launch and launch sequence start and throttling up (ms) |
196196
| nav_fw_launch_spinup_time | 100 | Time to bring power from min_throttle to nav_fw_launch_thr - to avoid big stress on ESC and large torque from propeller |
197197
| nav_fw_launch_timeout | 5000 | Maximum time for launch sequence to be executed. After this time LAUNCH mode will be turned off and regular flight mode will take over (ms) |
198-
| nav_fw_launch_climb_angle | 10 | Climb angle for launch sequence (degrees), is also restrained by global max_angle_inclination_pit |
198+
| nav_fw_launch_climb_angle | 18 | Climb angle for launch sequence (degrees), is also restrained by global max_angle_inclination_pit |
199199
| serialrx_provider | SPEK1024 | When feature SERIALRX is enabled, this allows connection to several receivers which output data via digital interface resembling serial. See RX section. |
200200
| sbus_inversion | OFF | Standard SBUS (Futaba, FrSKY) uses an inverted signal. Some OpenLRS receivers produce a non-inverted SBUS signal. This setting is to support this type of receivers (including modified FrSKY). This only works on supported hardware (mainly F3 based flight controllers). |
201201
| spektrum_sat_bind | 0 | 0 = disabled. Used to bind the spektrum satellite to RX |

Diff for: src/main/navigation/navigation.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ PG_RESET_TEMPLATE(navConfig_t, navConfig,
127127
.launch_motor_timer = 500, // ms
128128
.launch_motor_spinup_time = 100, // ms, time to gredually increase throttle from idle to launch
129129
.launch_timeout = 5000, // ms, timeout for launch procedure
130-
.launch_climb_angle = 10 // 10 deg
130+
.launch_climb_angle = 18 // 10 deg
131131
}
132132
);
133133

0 commit comments

Comments
 (0)