ardupilot/libraries/AP_HAL_Linux/UDPDevice.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

77 lines
1.3 KiB
C++
Raw Normal View History

#include "UDPDevice.h"
2015-06-15 18:01:14 -03:00
#include <fcntl.h>
2015-06-15 18:01:14 -03:00
#include <stdio.h>
#include <sys/ioctl.h>
2015-06-15 18:01:14 -03:00
#include <AP_HAL/AP_HAL.h>
2015-06-15 18:01:14 -03:00
UDPDevice::UDPDevice(const char *ip, uint16_t port, bool bcast, bool input):
2015-06-15 18:01:14 -03:00
_ip(ip),
_port(port),
_bcast(bcast),
_input(input)
2015-06-15 18:01:14 -03:00
{
}
UDPDevice::~UDPDevice()
{
}
ssize_t UDPDevice::write(const uint8_t *buf, uint16_t n)
{
if (!socket.pollout(0)) {
return -1;
}
if (_connected) {
return socket.send(buf, n);
}
if (_input) {
// can't send yet
return -1;
}
return socket.sendto(buf, n, _ip, _port);
2015-06-15 18:01:14 -03:00
}
ssize_t UDPDevice::read(uint8_t *buf, uint16_t n)
{
ssize_t ret = socket.recv(buf, n, 0);
if (!_connected && ret > 0) {
const char *ip;
uint16_t port;
socket.last_recv_address(ip, port);
_connected = socket.connect(ip, port);
}
return ret;
2015-06-15 18:01:14 -03:00
}
bool UDPDevice::open()
{
if (_input) {
socket.bind(_ip, _port);
return true;
}
if (_bcast) {
// open now, then connect on first received packet
socket.set_broadcast();
return true;
}
_connected = socket.connect(_ip, _port);
return _connected;
2015-06-15 18:01:14 -03:00
}
bool UDPDevice::close()
{
return true;
}
void UDPDevice::set_blocking(bool blocking)
{
socket.set_blocking(blocking);
}
void UDPDevice::set_speed(uint32_t speed)
{
}