Skip to content

Commit 7f4400a

Browse files
authored
Merge pull request #122 from ROBOTIS-GIT/develop
Develop
2 parents 3a54c46 + 1298ec7 commit 7f4400a

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

library.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name=Dynamixel2Arduino
2-
version=0.6.2
2+
version=0.6.3
33
author=ROBOTIS
44
license=Apache-2.0
5-
maintainer=Will Son(willson@robotis.com)
5+
maintainer=HongHyun Kim(khh@robotis.com)
66
sentence=DYNAMIXEL protocol Library for Arduino
77
paragraph=This library helps the Arduino boards to communicate with DYNAMIXEL protocol.
88
category=Communication

src/utility/port_handler.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ void SerialPortHandler::begin(unsigned long baud)
3939
if(port_ == Serial1 && getOpenState() == false){
4040
pinMode(BDPIN_DXL_PWR_EN, OUTPUT);
4141
digitalWrite(BDPIN_DXL_PWR_EN, HIGH);
42-
delay(300); // Wait for the FET to turn on.
42+
delay(500); // Wait for the FET to turn on.
4343
}
4444
#elif defined(ARDUINO_OpenCR)
4545
if(port_ == Serial3 && getOpenState() == false){
4646
pinMode(BDPIN_DXL_PWR_EN, OUTPUT);
4747
digitalWrite(BDPIN_DXL_PWR_EN, HIGH);
4848
}
49-
delay(300); // Wait for the DYNAMIXEL to power up normally.
49+
delay(500); // Wait for the DYNAMIXEL to power up normally.
5050
#endif
5151

5252
baud_ = baud;

0 commit comments

Comments
 (0)