You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: vehicle/autoware_raw_vehicle_cmd_converter/README.md
+14
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,12 @@ vgr_coef_c: 0.042
45
45
When `convert_steer_cmd_method: "vgr"` is selected, the node receives the control command from the controller as the desired tire angle and calculates the desired steering angle to output.
46
46
Also, when `convert_actuation_to_steering_status: true`, this node receives the `actuation_status` topic and calculates the steer tire angle from the `steer_wheel_angle` and publishes it.
47
47
48
+
### Vehicle Adaptor
49
+
50
+
**Under development**
51
+
A feature that compensates for control commands according to the dynamic characteristics of the vehicle.
52
+
This feature works when `use_vehicle_adaptor: true` is set and requires `control_horizon` to be enabled, so you need to set `enable_control_cmd_horizon_pub: true` in the trajectory_follower node.
53
+
48
54
## Input topics
49
55
50
56
| Name | Type | Description |
@@ -54,6 +60,14 @@ Also, when `convert_actuation_to_steering_status: true`, this node receives the
54
60
| `~/input/odometry` | navigation_msgs::Odometry | twist topic in odometry is used. |
55
61
| `~/input/actuation_status` | tier4_vehicle_msgs::msg::ActuationStatus | actuation status is assumed to receive the same type of status as sent to the vehicle side. For example, if throttle/brake pedal/steer_wheel_angle is sent, the same type of status is received. In the case of steer_wheel_angle, it is used to calculate steer_tire_angle and VGR in this node. |
Copy file name to clipboardexpand all lines: vehicle/autoware_raw_vehicle_cmd_converter/schema/raw_vehicle_cmd_converter.schema.json
+5
Original file line number
Diff line number
Diff line change
@@ -180,6 +180,11 @@
180
180
"type": "boolean",
181
181
"default": "true",
182
182
"description": "convert actuation to steering status or not. Whether to subscribe to actuation_status and calculate and publish steering_status For example, receive the steering wheel angle and calculate the steering wheel angle based on the gear ratio. If false, the vehicle interface must publish steering_status."
183
+
},
184
+
"use_vehicle_adaptor": {
185
+
"type": "boolean",
186
+
"default": "false",
187
+
"description": "flag to enable feature that compensates control commands according to vehicle dynamics."
0 commit comments