-
Notifications
You must be signed in to change notification settings - Fork 668
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
- Loading branch information
Showing
10 changed files
with
122 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
control/trajectory_follower/include/trajectory_follower/input_data.hpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// Copyright 2022 The Autoware Foundation | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
#ifndef TRAJECTORY_FOLLOWER__INPUT_DATA_HPP_ | ||
#define TRAJECTORY_FOLLOWER__INPUT_DATA_HPP_ | ||
|
||
#include "autoware_auto_planning_msgs/msg/trajectory.hpp" | ||
#include "autoware_auto_vehicle_msgs/msg/steering_report.hpp" | ||
#include "nav_msgs/msg/odometry.hpp" | ||
|
||
namespace autoware | ||
{ | ||
namespace motion | ||
{ | ||
namespace control | ||
{ | ||
namespace trajectory_follower | ||
{ | ||
struct InputData | ||
{ | ||
autoware_auto_planning_msgs::msg::Trajectory::SharedPtr current_trajectory_ptr; | ||
nav_msgs::msg::Odometry::SharedPtr current_odometry_ptr; | ||
autoware_auto_vehicle_msgs::msg::SteeringReport::SharedPtr current_steering_ptr; | ||
}; | ||
} // namespace trajectory_follower | ||
} // namespace control | ||
} // namespace motion | ||
} // namespace autoware | ||
|
||
#endif // TRAJECTORY_FOLLOWER__INPUT_DATA_HPP_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters