Skip to content

Commit

Permalink
feat(autoware_accel_brake_map_calibrator)!: tier4_debug_msgs changed …
Browse files Browse the repository at this point in the history
…to autoware_internal_debug_msgs in autoware_accel_brake_map_calibrator (#9923)

Signed-off-by: vish0012 <[email protected]>
Co-authored-by: Ryohsuke Mitsudome <[email protected]>
  • Loading branch information
vish0012 and mitsudome-r authored Jan 17, 2025
1 parent b92eb33 commit e3e7fdb
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@

#include <Eigen/Dense>

#include "autoware_internal_debug_msgs/msg/float32_multi_array_stamped.hpp"
#include "autoware_internal_debug_msgs/msg/float32_stamped.hpp"
#include "autoware_vehicle_msgs/msg/steering_report.hpp"
#include "autoware_vehicle_msgs/msg/velocity_report.hpp"
#include "geometry_msgs/msg/twist_stamped.hpp"
Expand All @@ -37,8 +39,6 @@
#include "std_msgs/msg/multi_array_dimension.hpp"
#include "std_msgs/msg/string.hpp"
#include "tf2_geometry_msgs/tf2_geometry_msgs.hpp"
#include "tier4_debug_msgs/msg/float32_multi_array_stamped.hpp"
#include "tier4_debug_msgs/msg/float32_stamped.hpp"
#include "tier4_external_api_msgs/msg/calibration_status.hpp"
#include "tier4_external_api_msgs/msg/calibration_status_array.hpp"
#include "tier4_external_api_msgs/srv/get_accel_brake_map_calibration_data.hpp"
Expand All @@ -57,15 +57,15 @@

namespace autoware::accel_brake_map_calibrator
{
using autoware_internal_debug_msgs::msg::Float32MultiArrayStamped;
using autoware_internal_debug_msgs::msg::Float32Stamped;
using autoware_vehicle_msgs::msg::SteeringReport;
using autoware_vehicle_msgs::msg::VelocityReport;
using geometry_msgs::msg::TwistStamped;
using nav_msgs::msg::OccupancyGrid;
using raw_vehicle_cmd_converter::AccelMap;
using raw_vehicle_cmd_converter::BrakeMap;
using std_msgs::msg::Float32MultiArray;
using tier4_debug_msgs::msg::Float32MultiArrayStamped;
using tier4_debug_msgs::msg::Float32Stamped;
using tier4_external_api_msgs::msg::CalibrationStatus;
using tier4_vehicle_msgs::msg::ActuationCommandStamped;
using tier4_vehicle_msgs::msg::ActuationStatusStamped;
Expand Down
2 changes: 1 addition & 1 deletion vehicle/autoware_accel_brake_map_calibrator/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<buildtool_depend>ament_cmake_auto</buildtool_depend>
<buildtool_depend>autoware_cmake</buildtool_depend>

<depend>autoware_internal_debug_msgs</depend>
<depend>autoware_motion_utils</depend>
<depend>autoware_raw_vehicle_cmd_converter</depend>
<depend>autoware_universe_utils</depend>
Expand All @@ -25,7 +26,6 @@
<depend>std_srvs</depend>
<depend>tf2_geometry_msgs</depend>
<depend>tf2_ros</depend>
<depend>tier4_debug_msgs</depend>
<depend>tier4_external_api_msgs</depend>
<depend>tier4_vehicle_msgs</depend>
<depend>visualization_msgs</depend>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from autoware_internal_debug_msgs.msg import Float32Stamped
import rclpy
from rclpy.node import Node
from tier4_debug_msgs.msg import Float32Stamped

MAX_ACCEL = 1.0 # [-]
MIN_ACCEL = 0.0 # [-]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from autoware_internal_debug_msgs.msg import Float32Stamped
from autoware_vehicle_msgs.msg import GearCommand
import rclpy
from rclpy.node import Node
from tier4_debug_msgs.msg import Float32Stamped
from tier4_vehicle_msgs.msg import ActuationCommandStamped


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
# limitations under the License.


from autoware_internal_debug_msgs.msg import Float32Stamped
import rclpy
from rclpy.node import Node
from tier4_debug_msgs.msg import Float32Stamped

MAX_BRAKE = 1.0 # [-]
MIN_BRAKE = 0.0 # [-]
Expand Down

0 comments on commit e3e7fdb

Please sign in to comment.