From 5d0fc4dca150f60290286a7a2c71f1ea30aff12d Mon Sep 17 00:00:00 2001 From: Darren Lines Date: Thu, 29 Oct 2020 19:11:11 +0000 Subject: [PATCH 1/2] Update preset_definitions.js Updated to reflect request https://github.com/iNavFlight/inav-configurator/issues/920 I did not add the mixer, as I thought that the preset was the wrong place for this. However a note has been added in the preset description to update the mixer to the correct weights. --- js/preset_definitions.js | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/js/preset_definitions.js b/js/preset_definitions.js index 87638365..37e29473 100644 --- a/js/preset_definitions.js +++ b/js/preset_definitions.js @@ -1444,7 +1444,7 @@ presets.presets = [ }, { name: "ZOHD Dart 250g", - description: "3x5x3 propeller, 1406 2600kV motor, 3S LiPo. 570mm wingspan, AUW potentially under 250g on 2S.", + description: "3x5x3 propeller, 1406 2600kV motor, 3S LiPo. 570mm wingspan, AUW potentially under 250g on 2S.
Please set the Stabilised Roll's weight to 80, and the Stabilised Pitch weight to 65.", features: [ "Adjusted gyro filtering", "Adjusted PIDs", @@ -1452,8 +1452,8 @@ presets.presets = [ ], applyDefaults: ["INAV_PID_CONFIG", "RC_tuning", "PID_ADVANCED", "FILTER_CONFIG"], settingsMSP: [ - presets.elementHelper("INAV_PID_CONFIG", "gyroscopeLpf", 0), - presets.elementHelper("FILTER_CONFIG", "gyroSoftLpfHz", 35), + presets.elementHelper("INAV_PID_CONFIG", "gyroscopeLpf", 3), + presets.elementHelper("FILTER_CONFIG", "gyroSoftLpfHz", 30), presets.elementHelper("RC_tuning", "roll_rate", 360), presets.elementHelper("RC_tuning", "pitch_rate", 130), presets.elementHelper("RC_tuning", "dynamic_THR_PID", 30), @@ -1466,35 +1466,39 @@ presets.presets = [ }, { key: "fw_p_pitch", - value: 9 + value: 3 }, { key: "fw_i_pitch", - value: 15 + value: 7 }, { key: "fw_ff_pitch", - value: 14 + value: 40 }, { key: "fw_p_roll", - value: 9 + value: 2 }, { key: "fw_i_roll", - value: 12 + value: 4 }, { key: "fw_ff_roll", - value: 15 + value: 18 }, { key: "rc_expo", - value: 30 + value: 70 }, { key: "manual_rc_expo", - value: 30 + value: 70 + }, + { + key: "rc_yaw_expo", + value: 20 } ], type: 'flyingwing' @@ -1554,4 +1558,4 @@ presets.presets = [ ], type: 'flyingwing' } -]; \ No newline at end of file +]; From 20df1515845623f7a5f4211f1335e017510a135f Mon Sep 17 00:00:00 2001 From: Darren Lines Date: Thu, 29 Oct 2020 19:15:46 +0000 Subject: [PATCH 2/2] Update preset_definitions.js --- js/preset_definitions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/preset_definitions.js b/js/preset_definitions.js index 37e29473..0154fa86 100644 --- a/js/preset_definitions.js +++ b/js/preset_definitions.js @@ -1444,7 +1444,7 @@ presets.presets = [ }, { name: "ZOHD Dart 250g", - description: "3x5x3 propeller, 1406 2600kV motor, 3S LiPo. 570mm wingspan, AUW potentially under 250g on 2S.
Please set the Stabilised Roll's weight to 80, and the Stabilised Pitch weight to 65.", + description: "3x5x3 propeller, 1406 2600kV motor, 3S LiPo. 570mm wingspan, AUW potentially under 250g on 2S.

Please set the Stabilised Roll weight to 80, and the Stabilised Pitch weight to 65.", features: [ "Adjusted gyro filtering", "Adjusted PIDs",