AP_SerialManager: disable flow control for sbus1 port

This commit is contained in:
Mark Whitehorn 2018-01-22 21:23:20 -07:00 committed by Andrew Tridgell
parent b94b1dcd97
commit 1a167a7d1f
1 changed files with 1 additions and 0 deletions

View File

@ -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;
}
}