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
fix(demos/ota): subscribe only TwistStamped on /cmd_vel
broken_lidar's reactive-fault path was subscribing to both Twist and
TwistStamped on /cmd_vel "to be safe". At runtime that worked, but
Foxglove inspects every subscriber when listing topic schemas and
emitted: "Multiple channels advertise the same topic /cmd_vel but the
schema, schema name or encodings do not match". The mixed-types entry
also confused ros2 topic info, which then reported the topic with two
type strings.
Nav2 Jazzy publishes TwistStamped (docking_server / collision_monitor /
velocity_smoother all use the stamped variant). The demo doesn't ship
any teleop or legacy publisher; there's no Twist source on this stack.
Drop the Twist subscription, keep TwistStamped.
0 commit comments