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() :
|
||||
AP_HAL::HAL(
|
||||
&uartADriver,
|
||||
&uartBDriver,
|
||||
&uartCDriver,
|
||||
&uartCDriver, // ordering captures the historical use of uartB as SERIAL3
|
||||
nullptr, /* no uartD */
|
||||
&uartBDriver,
|
||||
nullptr, /* no uartE */
|
||||
nullptr, /* no uartF */
|
||||
nullptr, /* no uartG */
|
||||
|
|
Loading…
Reference in New Issue