Skip to content

Commit 159fcc0

Browse files
committed
Fix parameter path
1 parent c2cdc0c commit 159fcc0

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

crates/control/src/motion/step_planner.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,10 @@ pub struct CycleContext {
3838
step_size_delta_fast: Parameter<Step, "step_planner.step_size_delta_fast">,
3939
max_step_size_backwards: Parameter<f32, "step_planner.max_step_size_backwards">,
4040
max_inside_turn: Parameter<f32, "step_planner.max_inside_turn">,
41-
rotation_exponent: Parameter<f32, "step_planner.optimization_parameters.rotation_exponent">,
41+
rotation_exponent:
42+
Parameter<f32, "step_planner.optimization_parameters.walk_volume_rotation_exponent">,
4243
translation_exponent:
43-
Parameter<f32, "step_planner.optimization_parameters.translation_exponent">,
44+
Parameter<f32, "step_planner.optimization_parameters.walk_volume_translation_exponent">,
4445
initial_side_bonus: Parameter<f32, "step_planner.initial_side_bonus">,
4546
request_scale: Parameter<Step, "step_planner.request_scale">,
4647
optimization_parameters:

etc/parameters/default.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -405,8 +405,8 @@
405405
"walk_orientation_penalty": 1.0,
406406
"alignment_start_distance": 0.1,
407407
"alignment_start_smoothness": 0.05,
408-
"translation_exponent": 1.5,
409-
"rotation_exponent": 2.0
408+
"walk_volume_translation_exponent": 1.5,
409+
"walk_volume_rotation_exponent": 2.0
410410
}
411411
},
412412
"zero_moment_point": {

0 commit comments

Comments
 (0)