HAL_PX4: don't check USB for data if not connected
This commit is contained in:
parent
9f36acbb92
commit
97d8007b08
@ -418,6 +418,11 @@ void PX4UARTDriver::_timer_tick(void)
|
|||||||
|
|
||||||
if (!_initialised) return;
|
if (!_initialised) return;
|
||||||
|
|
||||||
|
// don't try IO on a disconnected USB port
|
||||||
|
if (strcmp(_devpath, "/dev/ttyACM0") == 0 && !hal.gpio->usb_connected()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
_in_timer = true;
|
_in_timer = true;
|
||||||
|
|
||||||
// write any pending bytes
|
// write any pending bytes
|
||||||
|
Loading…
Reference in New Issue
Block a user