This commit is contained in:
Stavros Korokithakis 2023-09-16 23:59:55 +03:00
parent 30d2385812
commit 36b1770ed4
No known key found for this signature in database
GPG Key ID: 26EA345ECD4C2A63

View File

@ -3,12 +3,7 @@
This is the regex I use with Parachute to transfer between planes only the parameters that are transferrable (ie non-plane-specific):
```bash
parachute restore -f "^(ACRO_LOCKING|OSD.*|RC[\d_]+.*|\
FLTMODE.*|FLIGHT_OPTIONS|FS_.*|RTL_CLIMB_MIN|RTL_RADIUS|\
THR_PASS_STAB|THR_SLEWRATE|THR_SUPP_MAN|TKOFF_ACCEL_CNT|\
TKOFF_THR_.*|TKOFF_ALT|TKOFF_DIST|HOME_RESET_ALT|\
ALT_HOLD_RTL|MIN_GNDSPD_CM|ARMING_RUDDER)$" \
<backup>
parachute restore -f '^(ACRO_LOCKING|OSD.*|RC[\d_]+.*|FLTMODE.*|FLIGHT_OPTIONS|FS_.*|RTL_CLIMB_MIN|RTL_RADIUS|THR_PASS_STAB|THR_SLEWRATE|THR_SUPP_MAN|TKOFF_ACCEL_CNT|TKOFF_THR_.*|TKOFF_ALT|TKOFF_DIST|HOME_RESET_ALT|ALT_HOLD_RTL|MIN_GNDSPD_CM|ARMING_RUDDER)$' <backup>
```
This will transfer things like the OSD settings, flight modes, failsafe options, etc etc, but will leave things like PID tuning alone.
@ -17,6 +12,6 @@ Use it to set up a new plane by copying over settings from an older plane.
* * *
<p style="font-size:80%; font-style: italic">
Last updated on August 07, 2022. For any questions/feedback,
Last updated on September 16, 2023. For any questions/feedback,
email me at <a href="mailto:hi@stavros.io">hi@stavros.io</a>.
</p>