AP_HAL_Empty: pass UARTs to AP_HAL in SERIALn order

This commit is contained in:
Thomas Watson 2023-12-10 11:08:50 -06:00 committed by Andrew Tridgell
parent 507ab623b2
commit 90c14141a0
1 changed files with 2 additions and 2 deletions

View File

@ -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 */