AP_HAL_ChibiOS: pass UARTs to AP_HAL in SERIALn order

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

View File

@ -137,9 +137,9 @@ AP_IOMCU iomcu(uart_io);
HAL_ChibiOS::HAL_ChibiOS() :
AP_HAL::HAL(
&uartADriver,
&uartBDriver,
&uartCDriver,
&uartCDriver, // ordering captures the historical use of uartB as SERIAL3
&uartDDriver,
&uartBDriver,
&uartEDriver,
&uartFDriver,
&uartGDriver,