Skip to content

Commit d1010e4

Browse files
authored
fix
1 parent 635fe06 commit d1010e4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ur_robot_driver/include/ur_robot_driver/hardware_interface.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ class URPositionHardwareInterface : public hardware_interface::SystemInterface
299299
double pausing_ramp_up_increment_;
300300

301301
// resources switching aux vars
302-
std::vector<std::vector<uint>> stop_modes_;
302+
std::vector<std::vector<uint32_t>> stop_modes_;
303303
std::vector<std::vector<std::string>> start_modes_;
304304
bool position_controller_running_;
305305
bool velocity_controller_running_;

ur_robot_driver/src/hardware_interface.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1073,7 +1073,7 @@ hardware_interface::return_type URPositionHardwareInterface::prepare_command_mod
10731073
hardware_interface::return_type ret_val = hardware_interface::return_type::OK;
10741074

10751075
start_modes_ = std::vector<std::vector<std::string>>(info_.joints.size());
1076-
stop_modes_ = std::vector<std::vector<uint>>(info_.joints.size());
1076+
stop_modes_ = std::vector<std::vector<uint32_t>>(info_.joints.size());
10771077
std::vector<std::vector<std::string>> control_modes(info_.joints.size());
10781078
const std::string tf_prefix = info_.hardware_parameters.at("tf_prefix");
10791079

0 commit comments

Comments
 (0)