File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,7 +39,6 @@ struct FR3Config : common::RobotConfig {
3939 std::optional<FR3Load> load_parameters = std::nullopt ;
4040 std::optional<common::Pose> nominal_end_effector_frame = std::nullopt ;
4141 std::optional<common::Pose> world_to_robot = std::nullopt ;
42- common::Pose tcp_offset = common::Pose::Identity();
4342 bool async_control = false ;
4443};
4544
Original file line number Diff line number Diff line change @@ -66,7 +66,6 @@ PYBIND11_MODULE(_core, m) {
6666 .def_readwrite (" nominal_end_effector_frame" ,
6767 &rcs::hw::FR3Config::nominal_end_effector_frame)
6868 .def_readwrite (" world_to_robot" , &rcs::hw::FR3Config::world_to_robot)
69- .def_readwrite (" tcp_offset" , &rcs::hw::FR3Config::tcp_offset)
7069 .def_readwrite (" async_control" , &rcs::hw::FR3Config::async_control);
7170
7271 py::object gripper_config =
Original file line number Diff line number Diff line change @@ -86,7 +86,6 @@ class FR3Config(rcs._core.common.RobotConfig):
8686 load_parameters : FR3Load | None
8787 nominal_end_effector_frame : rcs ._core .common .Pose | None
8888 speed_factor : float
89- tcp_offset : rcs ._core .common .Pose
9089 world_to_robot : rcs ._core .common .Pose | None
9190 def __init__ (self ) -> None : ...
9291
You can’t perform that action at this time.
0 commit comments