mirror of https://github.com/ArduPilot/ardupilot
AP_SerialManager: disable flow control for sbus1 port
This commit is contained in:
parent
b94b1dcd97
commit
1a167a7d1f
|
@ -240,6 +240,7 @@ void AP_SerialManager::init()
|
|||
state[i].uart->configure_parity(2); // enable even parity
|
||||
state[i].uart->set_stop_bits(2);
|
||||
state[i].uart->set_unbuffered_writes(true);
|
||||
state[i].uart->set_flow_control(AP_HAL::UARTDriver::FLOW_CONTROL_DISABLE);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue