Skip to content

Commit

Permalink
feat(raw_vehicle_cmd_converter): set convert_actuation_to_steering_st…
Browse files Browse the repository at this point in the history
…atus false by default (autowarefoundation#8668)

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
  • Loading branch information
kosuke55 committed Aug 29, 2024
1 parent 0d99cae commit 1ffee46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vehicle/autoware_raw_vehicle_cmd_converter/src/node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ RawVehicleCommandConverterNode::RawVehicleCommandConverterNode(

// NOTE: The steering status can be published from the vehicle side or converted in this node.
convert_actuation_to_steering_status_ =
declare_parameter<bool>("convert_actuation_to_steering_status");
declare_parameter<bool>("convert_actuation_to_steering_status", false);
if (convert_actuation_to_steering_status_) {
pub_steering_status_ = create_publisher<Steering>("~/output/steering_status", 1);
} else {
Expand Down

0 comments on commit 1ffee46

Please sign in to comment.