mirror of https://github.com/ArduPilot/ardupilot
AP_HAL_ChibiOS: CubeNode-ETH fix incorrect pin for CTS
Fixed an incorrect pin for UART8_CTS (PC11 should be PC12)
This commit is contained in:
parent
5ca1e48040
commit
a29b8a4f5a
|
@ -3,7 +3,7 @@ include ../CubeNode/hwdef.dat
|
||||||
# we need RTS/CTS for the PPP link
|
# we need RTS/CTS for the PPP link
|
||||||
undef PE0
|
undef PE0
|
||||||
undef PE1
|
undef PE1
|
||||||
undef PC11
|
undef PC12
|
||||||
undef HAL_PERIPH_ENABLE_IMU
|
undef HAL_PERIPH_ENABLE_IMU
|
||||||
undef HAL_GCS_ENABLED
|
undef HAL_GCS_ENABLED
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ undef HAL_GCS_ENABLED
|
||||||
PE1 UART8_TX UART8
|
PE1 UART8_TX UART8
|
||||||
PE0 UART8_RX UART8
|
PE0 UART8_RX UART8
|
||||||
PA10 UART8_RTS UART8
|
PA10 UART8_RTS UART8
|
||||||
PC11 UART8_CTS_GPIO UART8
|
PC12 UART8_CTS_GPIO UART8
|
||||||
|
|
||||||
SERIAL_ORDER OTG1 UART8
|
SERIAL_ORDER OTG1 UART8
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue