File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
cartesian_impedance_controller/src Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ CartesianImpedanceController::on_init() {
2626 auto_declare<double >(" stiffness.rot_x" , default_rot_stiff);
2727 auto_declare<double >(" stiffness.rot_y" , default_rot_stiff);
2828 auto_declare<double >(" stiffness.rot_z" , default_rot_stiff);
29- auto_declare<double >(" max_impedance_force" , 70.0 );
29+ auto_declare<double >(" max_impedance_force" , 70.0 ); // TODO
3030
3131 return rclcpp_lifecycle::node_interfaces::LifecycleNodeInterface::
3232 CallbackReturn::SUCCESS;
@@ -74,7 +74,7 @@ CartesianImpedanceController::on_configure(
7474 tmp[5 ] = 2 * sqrt (tmp[5 ]);
7575
7676 m_max_impendance_force =
77- get_node ()->get_parameter (" max_impedance_force" ).as_double ();
77+ get_node ()->get_parameter (" max_impedance_force" ).as_double (); // TODO
7878 // Set nullspace stiffness
7979 m_null_space_stiffness =
8080 get_node ()->get_parameter (" nullspace_stiffness" ).as_double ();
You can’t perform that action at this time.
0 commit comments