Skip to content

Commit

Permalink
Merge pull request #122 from ROBOTIS-GIT/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
honghyun79 authored Apr 17, 2023
2 parents 3a54c46 + 1298ec7 commit 7f4400a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name=Dynamixel2Arduino
version=0.6.2
version=0.6.3
author=ROBOTIS
license=Apache-2.0
maintainer=Will Son(willson@robotis.com)
maintainer=HongHyun Kim(khh@robotis.com)
sentence=DYNAMIXEL protocol Library for Arduino
paragraph=This library helps the Arduino boards to communicate with DYNAMIXEL protocol.
category=Communication
Expand Down
4 changes: 2 additions & 2 deletions src/utility/port_handler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ void SerialPortHandler::begin(unsigned long baud)
if(port_ == Serial1 && getOpenState() == false){
pinMode(BDPIN_DXL_PWR_EN, OUTPUT);
digitalWrite(BDPIN_DXL_PWR_EN, HIGH);
delay(300); // Wait for the FET to turn on.
delay(500); // Wait for the FET to turn on.
}
#elif defined(ARDUINO_OpenCR)
if(port_ == Serial3 && getOpenState() == false){
pinMode(BDPIN_DXL_PWR_EN, OUTPUT);
digitalWrite(BDPIN_DXL_PWR_EN, HIGH);
}
delay(300); // Wait for the DYNAMIXEL to power up normally.
delay(500); // Wait for the DYNAMIXEL to power up normally.
#endif

baud_ = baud;
Expand Down

0 comments on commit 7f4400a

Please sign in to comment.