You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/tf (or in this case /husky/tf) should always be published as VOLATILE, as TRANSIENT_LOCAL latches the topic and old tf messages have no value. It also can lead to error messages because of dropped messages. It is not a critical issue or anything but should still be mentioned
The text was updated successfully, but these errors were encountered:
@Mechazo11 hey, yes, this can happen. TF_OLD_DATA gets thrown when data is added to your tf_buffer that is older than the cache limit (see here). By latching the topic, old messages might get added to your tf buffer, resulting in that error.
Please provide the following information:
Expected behaviour
Normal tf (not tf static) should be published VOLATILE
Actual behaviour
platform_velocity_controller
publishes tf as TRANSIENT_LOCALTo Reproduce
Start the platform_velocity_controller and check the QoS for tf
Other notes
Output of
ros2 topic info -v /husky/tf
/tf
(or in this case/husky/tf
) should always be published as VOLATILE, as TRANSIENT_LOCAL latches the topic and old tf messages have no value. It also can lead to error messages because of dropped messages. It is not a critical issue or anything but should still be mentionedThe text was updated successfully, but these errors were encountered: