@@ -28,6 +28,7 @@ Allowed ``ur_type`` strings: ``ur3``, ``ur3e``, ``ur5``, ``ur5e``, ``ur10``, ``u
2828Other important arguments are:
2929
3030
31+ * ``kinematics_params_file `` (default: *None *) - Path to the calibration file extracted from the robot, as described in :ref: `calibration_extraction `.
3132* ``use_mock_hardware `` (default: *false * ) - Use simple hardware emulator from ros2_control. Useful for testing launch files, descriptions, etc.
3233* ``headless_mode `` (default: *false *) - Start driver in :ref: `headless_mode `.
3334* ``launch_rviz `` (default: *true *) - Start RViz together with the driver.
@@ -72,6 +73,31 @@ Depending on the :ref:`robot control mode<operation_modes>` do the following:
7273
7374.. _continuation_after_interruptions :
7475
76+ Verify calibration info is being used correctly
77+ -----------------------------------------------
78+
79+ .. _verify_calibration :
80+
81+ If you passed a path to an extracted calibration via the *kinematics_params_file *
82+ parameter, ensure that the loaded calibration matches that of the robot by inspecting the console
83+ output after launching the ``ur_robot_driver ``. If the calibration does not match, you will see an error:
84+
85+ .. code-block ::
86+
87+ [INFO] [1694437690.406932381] [URPositionHardwareInterface]: Calibration checksum: 'calib_xxxxxxxxxxxxxxxxxxx'
88+ [ERROR] [1694437690.516957265] [URPositionHardwareInterface]: The calibration parameters of the connected robot don't match the ones from the given kinematics config file.
89+
90+ With the correct calibration you should see:
91+
92+ .. code-block ::
93+
94+ [INFO] [1694437690.406932381] [URPositionHardwareInterface]: Calibration checksum: 'calib_xxxxxxxxxxxxxxxxxxx'
95+ [INFO] [1694437690.516957265] [URPositionHardwareInterface]: Calibration checked successfully.
96+
97+ Alternatively, search for the term *checksum * in the console output after launching the driver.
98+ Verify that the printed checksum matches that on the final line of your extracted calibration file.
99+
100+
75101Continuation after interruptions
76102--------------------------------
77103
0 commit comments