Skip to content

Commit 4432441

Browse files
alireza787bclaude
andcommitted
fix(schema): correct step values and descriptions from config/schema audit
- GM_VELOCITY_CHASE.NEUTRAL_PITCH_ANGLE: step 0.01 → 0.5 (degree param) - GM_VELOCITY_VECTOR.MOUNT_ROLL/PITCH/YAW_OFFSET_DEG: step 0.01 → 0.5 (degree params) - FW_ATTITUDE_RATE new keys: min 1.0 → 0.0 for L1_LATERAL_SCALE, TECS_ALTITUDE_SCALE; improved descriptions for TECS_MAX_INTEGRAL, FALLBACK_ALTITUDE_PITCH_GAIN All schema range corrections (max values, type fixes, orphaned safety keys, range mismatches) were already applied in v6.0.2 by the aba12d7 fix agent. Tests: 34 passed (generate_schema + config_consistency) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 2c7b984 commit 4432441

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

configs/config_schema.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2879,7 +2879,7 @@ sections:
28792879
reboot_required: false
28802880
min: -90.0
28812881
max: 90.0
2882-
step: 0.01
2882+
step: 0.5
28832883
unit: deg
28842884
PITCH_VELOCITY_SCALING:
28852885
type: float
@@ -3175,7 +3175,7 @@ sections:
31753175
reboot_required: false
31763176
min: -180.0
31773177
max: 180.0
3178-
step: 0.01
3178+
step: 0.5
31793179
unit: deg
31803180
MOUNT_PITCH_OFFSET_DEG:
31813181
type: float
@@ -3185,7 +3185,7 @@ sections:
31853185
reboot_required: false
31863186
min: -180.0
31873187
max: 180.0
3188-
step: 0.01
3188+
step: 0.5
31893189
unit: deg
31903190
MOUNT_YAW_OFFSET_DEG:
31913191
type: float
@@ -3195,7 +3195,7 @@ sections:
31953195
reboot_required: false
31963196
min: -180.0
31973197
max: 180.0
3198-
step: 0.01
3198+
step: 0.5
31993199
unit: deg
32003200
INVERT_GIMBAL_ROLL:
32013201
type: boolean
@@ -3911,21 +3911,21 @@ sections:
39113911
L1_LATERAL_SCALE:
39123912
type: float
39133913
default: 50.0
3914-
min: 1.0
3914+
min: 0.0
39153915
max: 500.0
39163916
step: 1.0
3917-
unit: "m"
3918-
description: "L1 lateral scale factor for guidance law"
3917+
unit: m
3918+
description: "L1 guidance lateral scale factor (m)"
39193919
reload_tier: follower_restart
39203920
reboot_required: false
39213921
TECS_ALTITUDE_SCALE:
39223922
type: float
39233923
default: 20.0
3924-
min: 1.0
3924+
min: 0.0
39253925
max: 200.0
39263926
step: 1.0
3927-
unit: "m"
3928-
description: "TECS altitude error scale factor"
3927+
unit: m
3928+
description: "TECS altitude error scale (m)"
39293929
reload_tier: follower_restart
39303930
reboot_required: false
39313931
TECS_MAX_INTEGRAL:
@@ -3934,7 +3934,7 @@ sections:
39343934
min: 0.0
39353935
max: 500.0
39363936
step: 1.0
3937-
description: "TECS energy integrator clamp"
3937+
description: "TECS maximum integral term"
39383938
reload_tier: follower_restart
39393939
reboot_required: false
39403940
FALLBACK_ALTITUDE_PITCH_GAIN:
@@ -3943,7 +3943,7 @@ sections:
39433943
min: 0.0
39443944
max: 10.0
39453945
step: 0.01
3946-
description: "Pitch gain for altitude fallback when TECS unavailable"
3946+
description: "Fallback altitude pitch gain when TECS unavailable"
39473947
reload_tier: follower_restart
39483948
reboot_required: false
39493949
ENABLE_TECS:

0 commit comments

Comments
 (0)