Skip to content

Commit e3e7fdb

Browse files
feat(autoware_accel_brake_map_calibrator)!: tier4_debug_msgs changed to autoware_internal_debug_msgs in autoware_accel_brake_map_calibrator (#9923)
Signed-off-by: vish0012 <vishalchhn42@gmail.com> Co-authored-by: Ryohsuke Mitsudome <43976834+mitsudome-r@users.noreply.github.com>
1 parent b92eb33 commit e3e7fdb

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

vehicle/autoware_accel_brake_map_calibrator/include/autoware_accel_brake_map_calibrator/accel_brake_map_calibrator_node.hpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828

2929
#include <Eigen/Dense>
3030

31+
#include "autoware_internal_debug_msgs/msg/float32_multi_array_stamped.hpp"
32+
#include "autoware_internal_debug_msgs/msg/float32_stamped.hpp"
3133
#include "autoware_vehicle_msgs/msg/steering_report.hpp"
3234
#include "autoware_vehicle_msgs/msg/velocity_report.hpp"
3335
#include "geometry_msgs/msg/twist_stamped.hpp"
@@ -37,8 +39,6 @@
3739
#include "std_msgs/msg/multi_array_dimension.hpp"
3840
#include "std_msgs/msg/string.hpp"
3941
#include "tf2_geometry_msgs/tf2_geometry_msgs.hpp"
40-
#include "tier4_debug_msgs/msg/float32_multi_array_stamped.hpp"
41-
#include "tier4_debug_msgs/msg/float32_stamped.hpp"
4242
#include "tier4_external_api_msgs/msg/calibration_status.hpp"
4343
#include "tier4_external_api_msgs/msg/calibration_status_array.hpp"
4444
#include "tier4_external_api_msgs/srv/get_accel_brake_map_calibration_data.hpp"
@@ -57,15 +57,15 @@
5757

5858
namespace autoware::accel_brake_map_calibrator
5959
{
60+
using autoware_internal_debug_msgs::msg::Float32MultiArrayStamped;
61+
using autoware_internal_debug_msgs::msg::Float32Stamped;
6062
using autoware_vehicle_msgs::msg::SteeringReport;
6163
using autoware_vehicle_msgs::msg::VelocityReport;
6264
using geometry_msgs::msg::TwistStamped;
6365
using nav_msgs::msg::OccupancyGrid;
6466
using raw_vehicle_cmd_converter::AccelMap;
6567
using raw_vehicle_cmd_converter::BrakeMap;
6668
using std_msgs::msg::Float32MultiArray;
67-
using tier4_debug_msgs::msg::Float32MultiArrayStamped;
68-
using tier4_debug_msgs::msg::Float32Stamped;
6969
using tier4_external_api_msgs::msg::CalibrationStatus;
7070
using tier4_vehicle_msgs::msg::ActuationCommandStamped;
7171
using tier4_vehicle_msgs::msg::ActuationStatusStamped;

vehicle/autoware_accel_brake_map_calibrator/package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
<buildtool_depend>ament_cmake_auto</buildtool_depend>
1515
<buildtool_depend>autoware_cmake</buildtool_depend>
1616

17+
<depend>autoware_internal_debug_msgs</depend>
1718
<depend>autoware_motion_utils</depend>
1819
<depend>autoware_raw_vehicle_cmd_converter</depend>
1920
<depend>autoware_universe_utils</depend>
@@ -25,7 +26,6 @@
2526
<depend>std_srvs</depend>
2627
<depend>tf2_geometry_msgs</depend>
2728
<depend>tf2_ros</depend>
28-
<depend>tier4_debug_msgs</depend>
2929
<depend>tier4_external_api_msgs</depend>
3030
<depend>tier4_vehicle_msgs</depend>
3131
<depend>visualization_msgs</depend>

vehicle/autoware_accel_brake_map_calibrator/scripts/accel_tester.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
# See the License for the specific language governing permissions and
1616
# limitations under the License.
1717

18+
from autoware_internal_debug_msgs.msg import Float32Stamped
1819
import rclpy
1920
from rclpy.node import Node
20-
from tier4_debug_msgs.msg import Float32Stamped
2121

2222
MAX_ACCEL = 1.0 # [-]
2323
MIN_ACCEL = 0.0 # [-]

vehicle/autoware_accel_brake_map_calibrator/scripts/actuation_cmd_publisher.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
# See the License for the specific language governing permissions and
1616
# limitations under the License.
1717

18+
from autoware_internal_debug_msgs.msg import Float32Stamped
1819
from autoware_vehicle_msgs.msg import GearCommand
1920
import rclpy
2021
from rclpy.node import Node
21-
from tier4_debug_msgs.msg import Float32Stamped
2222
from tier4_vehicle_msgs.msg import ActuationCommandStamped
2323

2424

vehicle/autoware_accel_brake_map_calibrator/scripts/brake_tester.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
# limitations under the License.
1717

1818

19+
from autoware_internal_debug_msgs.msg import Float32Stamped
1920
import rclpy
2021
from rclpy.node import Node
21-
from tier4_debug_msgs.msg import Float32Stamped
2222

2323
MAX_BRAKE = 1.0 # [-]
2424
MIN_BRAKE = 0.0 # [-]

0 commit comments

Comments
 (0)