* fhandler_serial.cc (tcsendbreak): "sleeptime" argument to usleep()
must be in units of microseconds, not milliseconds.
This commit is contained in:
@ -285,7 +285,7 @@ fhandler_serial::close ()
|
||||
int
|
||||
fhandler_serial::tcsendbreak (int duration)
|
||||
{
|
||||
unsigned int sleeptime = 300;
|
||||
unsigned int sleeptime = 300000;
|
||||
|
||||
if (duration > 0)
|
||||
sleeptime *= duration;
|
||||
|
Reference in New Issue
Block a user