No transform between base_footprint and base_link
I have an URDF file with a fixed joint between base_footprint & base_link, but robot_state_publisher isn't publishing a tf transform between those 2 links. My understanding is that robot_state_publisher will publish & latch a static transform for fixed joints, but I'm not seeing it in any of my tests.
Details:
My base is irobot create2, using the create_autonomy base; source here: https://github.com/AutonomyLab/create...
The URDF file has this snippet:
<joint name="base_footprint_joint" type="fixed">
<origin xyz="0 0 0.017" rpy="0 0 0" />
<parent link="base_footprint" />
<child link="base_link" />
</joint>
I can't [yet] upload pictures, but my rqt_tf_tree shows: odom => base_footprint; and base_link => [ left_wheel_link, camera_link, right_wheel_link ]
(I added the base_link => camera_link transform using a static_transform_publisher; it's not in the create_autonomy URDF file.)
I can work around this, but I'm puzzled, and would like to find & fix the bug.
Thanks in advance!