mirror of https://github.com/ArduPilot/ardupilot
Plane: set GPS non-blocking
the new GPS driver only ever needs a non-blocking port
This commit is contained in:
parent
90f306cd3c
commit
15a7f63d7e
|
@ -266,6 +266,7 @@ static void startup_ground(void)
|
|||
// mid-flight, so set the serial ports non-blocking once we are
|
||||
// ready to fly
|
||||
hal.uartA->set_blocking_writes(false);
|
||||
hal.uartB->set_blocking_writes(false);
|
||||
hal.uartC->set_blocking_writes(false);
|
||||
if (hal.uartD != NULL) {
|
||||
hal.uartD->set_blocking_writes(false);
|
||||
|
|
Loading…
Reference in New Issue