Skip to content

Commit

Permalink
build(vehicle_cmd_gate): fix include paths and namespaces for messages
Browse files Browse the repository at this point in the history
Signed-off-by: Esteve Fernandez <esteve.fernandez@tier4.jp>
  • Loading branch information
esteve committed Feb 16, 2024
1 parent 21b0f30 commit 1a71dfb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions control/vehicle_cmd_gate/src/vehicle_cmd_filter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#define VEHICLE_CMD_FILTER_HPP_

#include <rclcpp/rclcpp.hpp>
#include <vehicle_cmd_gate/msg/is_filter_activated.hpp>
#include <autoware_vehicle_cmd_gate/msg/is_filter_activated.hpp>

#include <autoware_auto_control_msgs/msg/ackermann_control_command.hpp>

Expand All @@ -25,7 +25,7 @@
namespace vehicle_cmd_gate
{
using autoware_auto_control_msgs::msg::AckermannControlCommand;
using vehicle_cmd_gate::msg::IsFilterActivated;
using autoware_vehicle_cmd_gate::msg::IsFilterActivated;
using LimitArray = std::vector<double>;

struct VehicleCmdFilterParam
Expand Down
4 changes: 2 additions & 2 deletions control/vehicle_cmd_gate/src/vehicle_cmd_gate.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include <diagnostic_updater/diagnostic_updater.hpp>
#include <motion_utils/vehicle/vehicle_state_checker.hpp>
#include <rclcpp/rclcpp.hpp>
#include <vehicle_cmd_gate/msg/is_filter_activated.hpp>
#include <autoware_vehicle_cmd_gate/msg/is_filter_activated.hpp>
#include <vehicle_info_util/vehicle_info_util.hpp>

#include <autoware_adapi_v1_msgs/msg/mrm_state.hpp>
Expand Down Expand Up @@ -68,7 +68,7 @@ using tier4_external_api_msgs::msg::Heartbeat;
using tier4_external_api_msgs::srv::SetEmergency;
using tier4_system_msgs::msg::MrmBehaviorStatus;
using tier4_vehicle_msgs::msg::VehicleEmergencyStamped;
using vehicle_cmd_gate::msg::IsFilterActivated;
using autoware_vehicle_cmd_gate::msg::IsFilterActivated;
using visualization_msgs::msg::MarkerArray;

using diagnostic_msgs::msg::DiagnosticStatus;
Expand Down

0 comments on commit 1a71dfb

Please sign in to comment.