robot_state_publisher
Is there a reason why the robot_state_publisher is publishing joints at different time stamps? I'm new to using this system and need some help with it. My launch file is
<launch>
<include file="$(find hokuyo_node)/hokuyo_test.launch"/>
<node pkg="robot_state_publisher" type="state_publisher" name="rob_st_pub" >
<param name="publish_frequency" value="2"/>
<remap from="joint_states" to="al5b_joint_states" />
</node>
<param name="use_rep_117" value="true" />
</launch>
And the publisher node is publishing at 100 Hz to try and send the data. I've varied both frequencies in case the node publisher could not catch up but that doesn't seem to be the case. Are there extra parameters to set to get the tf to sample all links in the tree at the same time?
EDIT: I Attempted publishing and publish_frequency frequencies across the board - I understand this was just the latest attempt.
I don't quite understand your question, but 2 Hz is way too low for the robot state publisher; try something around 100 Hz.