Skip to content

Commit c42dadf

Browse files
Update robotis_controller.cpp
some logs are commented out.
1 parent fed08fb commit c42dadf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

robotis_controller/src/robotis_controller/robotis_controller.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ void RobotisController::initializeSyncWrite()
6161
if (gazebo_mode_ == true)
6262
return;
6363

64-
ROS_INFO("FIRST BULKREAD");
64+
//ROS_INFO("FIRST BULKREAD");
6565
for (auto& it : port_to_bulk_read_)
6666
it.second->txRxPacket();
6767
for(auto& it : port_to_bulk_read_)
@@ -72,15 +72,15 @@ void RobotisController::initializeSyncWrite()
7272
{
7373
if (++error_count > 10)
7474
{
75-
ROS_ERROR("[RobotisController] bulk read fail!!");
75+
ROS_ERROR("[RobotisController] first bulk read fail!!");
7676
exit(-1);
7777
}
7878
usleep(10 * 1000);
7979
result = it.second->txRxPacket();
8080
} while (result != COMM_SUCCESS);
8181
}
8282
init_pose_loaded_ = true;
83-
ROS_INFO("FIRST BULKREAD END");
83+
//ROS_INFO("FIRST BULKREAD END");
8484

8585
// clear syncwrite param setting
8686
for (auto& it : port_to_sync_write_position_)

0 commit comments

Comments
 (0)