mirror of https://github.com/ArduPilot/ardupilot
Copter: give UARTA 512 bytes
this reduces load by allowing more contiguous writes to the serial buffers
This commit is contained in:
parent
d60a68fd9c
commit
64d34dc125
|
@ -92,7 +92,7 @@ static void init_ardupilot()
|
|||
hal.uartA->begin(SERIAL0_BAUD, 256, 256);
|
||||
#else
|
||||
// use a bit less for non-HIL operation
|
||||
hal.uartA->begin(SERIAL0_BAUD, 128, 128);
|
||||
hal.uartA->begin(SERIAL0_BAUD, 512, 128);
|
||||
#endif
|
||||
|
||||
// GPS serial port.
|
||||
|
|
Loading…
Reference in New Issue