mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-21 07:13:56 -04:00
AP_Network: mavlink packetise requires mavlink
This commit is contained in:
parent
2650137e8c
commit
f72dd8cc89
@ -353,9 +353,11 @@ bool AP_Networking::Port::send_receive(void)
|
||||
// handle outgoing packets
|
||||
uint32_t available = writebuffer->available();
|
||||
available = MIN(300U, available);
|
||||
#if HAL_GCS_ENABLED
|
||||
if (packetise) {
|
||||
available = mavlink_packetise(*writebuffer, available);
|
||||
}
|
||||
#endif
|
||||
if (available > 0) {
|
||||
uint8_t buf[available];
|
||||
auto n = writebuffer->peekbytes(buf, available);
|
||||
|
Loading…
Reference in New Issue
Block a user