Skip to content

Commit dc493dc

Browse files
committed
fix: remove tcp offset from franka
tcp offset is already in the parent robot config
1 parent 1eefae7 commit dc493dc

3 files changed

Lines changed: 0 additions & 3 deletions

File tree

‎extensions/rcs_fr3/src/hw/FR3.h‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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

‎extensions/rcs_fr3/src/pybind/rcs.cpp‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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 =

‎extensions/rcs_fr3/src/rcs_fr3/_core/hw/__init__.pyi‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)