File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
include/dynamixel_hardware_interface/dynamixel Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -125,12 +125,12 @@ class Dynamixel
125125 std::vector<RWItemList> read_data_list_;
126126
127127 // sync read
128- dynamixel::GroupSyncRead * group_sync_read_;
128+ dynamixel::GroupFastSyncRead * group_sync_read_;
129129 // indirect inform for sync read
130130 std::map<uint8_t /* id*/ , IndirectInfo> indirect_info_read_;
131131
132132 // bulk read
133- dynamixel::GroupBulkRead * group_bulk_read_;
133+ dynamixel::GroupFastBulkRead * group_bulk_read_;
134134
135135 // write item (sync or bulk) variable
136136 bool write_type_;
Original file line number Diff line number Diff line change @@ -799,7 +799,7 @@ DxlError Dynamixel::SetSyncReadHandler(std::vector<uint8_t> id_arr)
799799 IN_ADDR, indirect_info_read_[id_arr.at (0 )].size );
800800
801801 group_sync_read_ =
802- new dynamixel::GroupSyncRead (
802+ new dynamixel::GroupFastSyncRead (
803803 port_handler_, packet_handler_,
804804 IN_ADDR, indirect_info_read_[id_arr.at (0 )].size );
805805
@@ -917,7 +917,7 @@ DxlError Dynamixel::SetBulkReadHandler(std::vector<uint8_t> id_arr)
917917 IN_ADDR, indirect_info_read_[id_arr.at (0 )].size );
918918 }
919919
920- group_bulk_read_ = new dynamixel::GroupBulkRead (port_handler_, packet_handler_);
920+ group_bulk_read_ = new dynamixel::GroupFastBulkRead (port_handler_, packet_handler_);
921921
922922 for (auto it_id : id_arr) {
923923 uint8_t ID = it_id;
You can’t perform that action at this time.
0 commit comments