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
The rate-limiter harness (PR #727) limits velocity — deliberately and honestly scoped: it does not and cannot limit torque, detect collisions, or protect the mechanism. On self-protecting followers (Franka/UR-class controllers) that gap is covered by the robot. On low-cost position-servo followers (Feetech SO-101, Damiao DevArm) nothing covers it:
A target reached at perfectly legal velocity still pushes with maximum torque if it collides on the way (or at the goal).
The servo/firmware either stalls at full current (heat, stripped gears) or — worse — latches a fault silently.
This issue proposes making that gap explicit and closing what's closeable from the teleop stack's side.
Pattern: the harness makes motion smooth, but smooth motion into an obstacle is still a full-torque press.
Proposal (tiered, from cheap to ambitious)
Document the scope honestly in the harness/limiter docs: "velocity-limited ≠ safe; on followers without torque control you MUST configure servo-side current/torque limits." One paragraph, prevents false confidence.
Follower-side protection recipes: for the common buses, document (or helper-script) the servo registers that matter — e.g., Feetech Torque_Limit / Max_Current-class registers, Damiao current limits and fault-flag polling — so integrators can set electrical self-protection to match the mechanism.
Stall/fault feedback into the retargeting graph: a standard input port for follower state (present current, temperature, fault flags) so a governor node can react (back off, disengage clutch, signal the operator via the feedback channel from [RFC] In-headset operator feedback as a first-class concern (HUD, haptic grammar, runtime scale control) — seeking design direction #738) instead of continuing to command into a stall. This is the piece that would have caught both the gripper-vs-body press and the DevArm stop-press within milliseconds instead of after gear/thermal damage.
(Ambitious) command-vs-measured divergence monitor: persistent tracking error beyond a threshold at low velocity ≈ contact — even with no current sensing, this heuristic detects "pressing against something" on any position-servo follower.
Items 1–2 are documentation; item 3 is a graph-API design question we'd value the team's direction on before prototyping; item 4 can live entirely in a retargeter node and we're happy to prototype it.
Part of the field-integration feedback series (SO-101 + reBot DevArm, June 29 – July 6). Priority suggestion: P0/P1 — this is the residual hardware-damage vector after #730/#731 land.
Context
The rate-limiter harness (PR #727) limits velocity — deliberately and honestly scoped: it does not and cannot limit torque, detect collisions, or protect the mechanism. On self-protecting followers (Franka/UR-class controllers) that gap is covered by the robot. On low-cost position-servo followers (Feetech SO-101, Damiao DevArm) nothing covers it:
This issue proposes making that gap explicit and closing what's closeable from the teleop stack's side.
Evidence from one week of hardware sessions
Pattern: the harness makes motion smooth, but smooth motion into an obstacle is still a full-torque press.
Proposal (tiered, from cheap to ambitious)
Torque_Limit/Max_Current-class registers, Damiao current limits and fault-flag polling — so integrators can set electrical self-protection to match the mechanism.Items 1–2 are documentation; item 3 is a graph-API design question we'd value the team's direction on before prototyping; item 4 can live entirely in a retargeter node and we're happy to prototype it.
Part of the field-integration feedback series (SO-101 + reBot DevArm, June 29 – July 6). Priority suggestion: P0/P1 — this is the residual hardware-damage vector after #730/#731 land.