File tree 1 file changed +2
-4
lines changed
control/autoware_simple_pure_pursuit/src
1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 24
24
namespace autoware ::control::simple_pure_pursuit
25
25
{
26
26
using autoware::motion_utils::findNearestIndex;
27
- using autoware_utils::calcLateralDeviation;
28
- using autoware_utils::calcYawDeviation;
29
27
30
28
SimplePurePursuitNode::SimplePurePursuitNode (const rclcpp::NodeOptions & node_options)
31
29
: Node(" simple_pure_pursuit" , node_options),
@@ -46,8 +44,8 @@ SimplePurePursuitNode::SimplePurePursuitNode(const rclcpp::NodeOptions & node_op
46
44
void SimplePurePursuitNode::on_timer ()
47
45
{
48
46
// 1. subscribe data
49
- const auto odom_ptr = odom_sub_.takeData ();
50
- const auto traj_ptr = traj_sub_.takeData ();
47
+ const auto odom_ptr = odom_sub_.take_data ();
48
+ const auto traj_ptr = traj_sub_.take_data ();
51
49
if (!odom_ptr || !traj_ptr) {
52
50
return ;
53
51
}
You can’t perform that action at this time.
0 commit comments