Commit 0d962e0a authored by Lorenz Meier's avatar Lorenz Meier

XPlane HIL: Fix max datagram size

parent e5a83d8d
......@@ -533,7 +533,7 @@ void QGCXPlaneLink::readBytes()
bool emitUpdate = false;
quint16 fields_changed = 0;
const qint64 maxLength = 1000;
const qint64 maxLength = 65536;
char data[maxLength];
QHostAddress sender;
quint16 senderPort;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment