Skip to content

Commit a1878f3

Browse files
Fix an issue with an invalid namespace imu_link
1 parent a9ae573 commit a1878f3

File tree

1 file changed

+1
-1
lines changed
  • simulation/simple_sensor_simulator/src/sensor_simulation/imu

1 file changed

+1
-1
lines changed

simulation/simple_sensor_simulator/src/sensor_simulation/imu/imu_sensor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ auto ImuSensor<sensor_msgs::msg::Imu>::generateMessage(
3535

3636
auto imu_msg = sensor_msgs::msg::Imu();
3737
imu_msg.header.stamp = current_ros_time;
38-
imu_msg.header.frame_id = "imu_link"; //tamagawa/
38+
imu_msg.header.frame_id = "tamagawa/imu_link";
3939

4040
auto orientation_rpy = math::geometry::convertQuaternionToEulerAngle(status.pose.orientation);
4141
auto twist = status.action_status.twist;

0 commit comments

Comments
 (0)