We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e887770 commit ff038e2Copy full SHA for ff038e2
src/dynamixel/dynamixel.cpp
@@ -864,7 +864,7 @@ DxlError Dynamixel::WriteMultiDxlData()
864
865
bool Dynamixel::checkReadType()
866
{
867
- if (read_data_list_.size() == 1){
+ if (read_data_list_.size() == 1) {
868
if (CheckIndirectReadAvailable(read_data_list_.at(0).comm_id) != DxlError::OK) {
869
return BULK;
870
}
@@ -916,7 +916,7 @@ bool Dynamixel::checkReadType()
916
917
bool Dynamixel::checkWriteType()
918
919
- if (write_data_list_.size() == 1){
+ if (write_data_list_.size() == 1) {
920
if (CheckIndirectWriteAvailable(write_data_list_.at(0).comm_id) != DxlError::OK) {
921
922
0 commit comments