Skip to content

Commit 5370095

Browse files
committed
fixed missing ,
1 parent 988af31 commit 5370095

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ur_robot_driver/src/hardware_interface.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1274,8 +1274,8 @@ hardware_interface::return_type URPositionHardwareInterface::prepare_command_mod
12741274
{ tf_prefix + FORCE_MODE_GPIO + "/type", FORCE_MODE_GPIO },
12751275
{ tf_prefix + PASSTHROUGH_GPIO + "/setpoint_positions_" + std::to_string(i), PASSTHROUGH_GPIO },
12761276
{ tf_prefix + FREEDRIVE_MODE_GPIO + "/async_success", FREEDRIVE_MODE_GPIO },
1277-
{ tf_prefix + TOOL_CONTACT_GPIO + "/tool_contact_set_state", TOOL_CONTACT_GPIO }
1278-
{ HW_IF_MOTION_PRIMITIVES + "/motion_type", HW_IF_MOTION_PRIMITIVES }
1277+
{ tf_prefix + TOOL_CONTACT_GPIO + "/tool_contact_set_state", TOOL_CONTACT_GPIO },
1278+
{ HW_IF_MOTION_PRIMITIVES + "/motion_type", HW_IF_MOTION_PRIMITIVES },
12791279
};
12801280

12811281
for (auto& item : start_modes_to_check) {
@@ -1310,7 +1310,7 @@ hardware_interface::return_type URPositionHardwareInterface::prepare_command_mod
13101310
StoppingInterface::STOP_PASSTHROUGH },
13111311
{ tf_prefix + FREEDRIVE_MODE_GPIO + "/async_success", FREEDRIVE_MODE_GPIO, StoppingInterface::STOP_FREEDRIVE },
13121312
{ tf_prefix + TOOL_CONTACT_GPIO + "/tool_contact_set_state", TOOL_CONTACT_GPIO,
1313-
StoppingInterface::STOP_TOOL_CONTACT }
1313+
StoppingInterface::STOP_TOOL_CONTACT },
13141314
{ tf_prefix + HW_IF_MOTION_PRIMITIVES + "/motion_type", HW_IF_MOTION_PRIMITIVES, StoppingInterface::STOP_MOTION_PRIMITIVES },
13151315

13161316
};

0 commit comments

Comments
 (0)