mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-09 09:28:31 -04:00
HAL_Linux: removed 0 timeout from sendto call
This commit is contained in:
parent
879f4f7555
commit
bbc8bdcef3
@ -19,7 +19,7 @@ UDPDevice::~UDPDevice()
|
||||
|
||||
ssize_t UDPDevice::write(const uint8_t *buf, uint16_t n)
|
||||
{
|
||||
return socket.sendto(buf, n, _ip, _port, 0);
|
||||
return socket.sendto(buf, n, _ip, _port);
|
||||
}
|
||||
|
||||
ssize_t UDPDevice::read(uint8_t *buf, uint16_t n)
|
||||
|
Loading…
Reference in New Issue
Block a user