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 faf5745 commit 5897f56Copy full SHA for 5897f56
src/utility/port_handler.cpp
@@ -39,14 +39,14 @@ void SerialPortHandler::begin(unsigned long baud)
39
if(port_ == Serial1 && getOpenState() == false){
40
pinMode(BDPIN_DXL_PWR_EN, OUTPUT);
41
digitalWrite(BDPIN_DXL_PWR_EN, HIGH);
42
- delay(1000); // Wait for the FET to turn on.
+ delay(500); // Wait for the FET to turn on.
43
}
44
#elif defined(ARDUINO_OpenCR)
45
if(port_ == Serial3 && getOpenState() == false){
46
47
48
49
- delay(1000); // Wait for the DYNAMIXEL to power up normally.
+ delay(500); // Wait for the DYNAMIXEL to power up normally.
50
#endif
51
52
baud_ = baud;
0 commit comments