mirror of https://github.com/ArduPilot/ardupilot
AP_HAL_Empty: pass UARTs to AP_HAL in SERIALn order
This commit is contained in:
parent
507ab623b2
commit
90c14141a0
|
@ -26,9 +26,9 @@ static Flash flashDriver;
|
||||||
HAL_Empty::HAL_Empty() :
|
HAL_Empty::HAL_Empty() :
|
||||||
AP_HAL::HAL(
|
AP_HAL::HAL(
|
||||||
&uartADriver,
|
&uartADriver,
|
||||||
&uartBDriver,
|
&uartCDriver, // ordering captures the historical use of uartB as SERIAL3
|
||||||
&uartCDriver,
|
|
||||||
nullptr, /* no uartD */
|
nullptr, /* no uartD */
|
||||||
|
&uartBDriver,
|
||||||
nullptr, /* no uartE */
|
nullptr, /* no uartE */
|
||||||
nullptr, /* no uartF */
|
nullptr, /* no uartF */
|
||||||
nullptr, /* no uartG */
|
nullptr, /* no uartG */
|
||||||
|
|
Loading…
Reference in New Issue