ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

cardoso's profile - activity

2021-06-11 06:58:01 -0500 received badge  Nice Question (source)
2018-06-26 09:11:59 -0500 received badge  Student (source)
2017-08-14 17:14:40 -0500 received badge  Famous Question (source)
2016-11-15 03:48:03 -0500 received badge  Notable Question (source)
2016-09-12 10:34:05 -0500 received badge  Popular Question (source)
2016-05-17 08:29:24 -0500 received badge  Enthusiast
2016-05-05 00:19:29 -0500 asked a question How does rosmsg md5 calculate the md5sum?

Hello!

I need to communicate through ros topics between two different ros versions. One of the msgs depends on trajectory_msgs which has changed between versions so it gives a md5sum error. To overcome this I tried to add the old version of trajectory_msgs to my catkin workspace and recompile. The output of rosmsg shows that after I source my workspace, the msg changes but the md5 does not, any ideas?

$~/indigo_ws$ rosmsg show trajectory_msgs/JointTrajectoryPoint 
    float64[] positions
    float64[] velocities
    float64[] accelerations
    float64[] effort
    duration time_from_start

$~/indigo_ws$ rosmsg md5 trajectory_msgs/JointTrajectoryPoint 
f3cd1e1c4d320c79d6985c904ae5dcd3
$~/indigo_ws$ source devel/setup.bash 
$~/indigo_ws$ rosmsg md5 trajectory_msgs/JointTrajectoryPoint 
f3cd1e1c4d320c79d6985c904ae5dcd3
$~/indigo_ws$ rosmsg show trajectory_msgs/JointTrajectoryPoint 
    float64[] positions
    float64[] velocities
    float64[] accelerations
    duration time_from_start

$~/indigo_ws$ rosmsg md5 trajectory_msgs/JointTrajectoryPoint 
f3cd1e1c4d320c79d6985c904ae5dcd3
2014-02-01 05:18:48 -0500 received badge  Supporter (source)