joplin-mdbooks-website/content/ardupilot/transfer-config-between-craft.md

23 lines
870 B
Markdown
Raw Normal View History

2021-11-19 21:13:37 -05:00
# Transfer config between craft
2021-09-07 08:13:28 -04:00
This is the regex I use with Parachute to transfer between planes only the parameters that are transferrable (ie non-plane-specific):
2022-06-11 05:52:14 -04:00
```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|\
2022-06-11 05:55:54 -04:00
ALT_HOLD_RTL|MIN_GNDSPD_CM|ARMING_RUDDER)\$" \
2022-06-11 05:52:14 -04:00
<backup>
```
2021-09-07 08:13:28 -04:00
This will transfer things like the OSD settings, flight modes, failsafe options, etc etc, but will leave things like PID tuning alone.
Use it to set up a new plane by copying over settings from an older plane.
* * *
<p style="font-size:80%; font-style: italic">
2022-06-11 05:52:14 -04:00
Last updated on June 11, 2022. For any questions/feedback,
2021-09-07 08:13:28 -04:00
email me at <a href="mailto:hi@stavros.io">hi@stavros.io</a>.
</p>