Skip to content

Commit

Permalink
style(pre-commit): autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Oct 8, 2024
1 parent 4ea500b commit 8a97198
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions vehicle/calibration_adapter/src/calibration_adapter_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ CalibrationAdapterNode::CalibrationAdapterNode()
create_publisher<Float32Stamped>("~/output/acceleration_status", durable_qos);
pub_acceleration_cmd_ =
create_publisher<Float32Stamped>("~/output/acceleration_cmd", durable_qos);
pub_vehicle_twist_ =
create_publisher<TwistStamped>("~/output/vehicle_twist", durable_qos);
pub_vehicle_twist_ = create_publisher<TwistStamped>("~/output/vehicle_twist", durable_qos);

sub_control_cmd_ = create_subscription<ControlCommandStamped>(
"~/input/control_cmd", queue_size,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ parameter_estimator:
valid_max_steer_rad: 0.05 # Used as steer data validation, the data should be less than this value
valid_min_velocity: 0.5 # Used as velocity validation, the data should be more than this value
valid_min_angular_velocity: 0.1 # Used in gear ratio estimator, the angular should be more than this value
gear_ratio: [15.7, 0.053, 0.047] # Initial estimated gear ratio
gear_ratio: [15.7, 0.053, 0.047] # Initial estimated gear ratio

0 comments on commit 8a97198

Please sign in to comment.