rfx deploy is the entry point for running a policy on a robot. It handles
loading weights, resolving the robot config, connecting hardware, and running
the control loop with rate control, jitter tracking, and clean shutdown.
Sources
--robot is
inferred.
From Python
Stats
Every deploy returns a stats object with:iterations— total control loop steps executedoverruns— steps that missed their rate deadlinep50_jitter_s/p95_jitter_s— per-step timing distribution
Safe stop
Ctrl+C performs a clean shutdown: the policy stops receiving observations, the robot returns home (when safe), and hardware resources are released. Signal handlers are installed byrfx.deploy() — do not install your own.

