mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-17 13:25:30 +03:00
Made FPort UART inversion default to off to match the specification.
This commit is contained in:
parent
9eb83d1e5f
commit
4c71a74b44
1 changed files with 1 additions and 1 deletions
|
@ -358,7 +358,7 @@ bool fportRxInit(const rxConfig_t *rxConfig, rxRuntimeConfig_t *rxRuntimeConfig)
|
|||
NULL,
|
||||
FPORT_BAUDRATE,
|
||||
MODE_RXTX,
|
||||
FPORT_PORT_OPTIONS | (rxConfig->serialrx_inverted ? 0: SERIAL_INVERTED) | (rxConfig->halfDuplex ? SERIAL_BIDIR : 0)
|
||||
FPORT_PORT_OPTIONS | (rxConfig->serialrx_inverted ? SERIAL_INVERTED : 0) | (rxConfig->halfDuplex ? SERIAL_BIDIR : 0)
|
||||
);
|
||||
|
||||
if (fportPort) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue