AP_HAL_Linux: standardize inclusion of libaries headers

Do the missing header changes due to changing the code before the pr
getting accepted.
This commit is contained in:
Lucas De Marchi 2015-08-15 19:50:47 -03:00 committed by Randy Mackay
parent d2adc99d3a
commit 77c236a6b7
6 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@
#define __AP_HAL_LINUX_CONSOLEDEVICE_UDP_H__
#include "SerialDevice.h"
#include "../AP_HAL/utility/Socket.h"
#include <AP_HAL/utility/Socket.h>
class ConsoleDevice: public SerialDevice {
public:

View File

@ -5,7 +5,7 @@
#include <stdlib.h>
#include <cstdio>
#include "SPIUARTDriver.h"
#include "../AP_HAL/utility/RingBuffer.h"
#include <AP_HAL/utility/RingBuffer.h>
extern const AP_HAL::HAL& hal;

View File

@ -2,7 +2,7 @@
#define __AP_HAL_LINUX_TCPCLIENTDEVICE_H__
#include "SerialDevice.h"
#include "../AP_HAL/utility/Socket.h"
#include <AP_HAL/utility/Socket.h>
class TCPServerDevice: public SerialDevice {
public:

View File

@ -2,7 +2,7 @@
#define __AP_HAL_LINUX_UARTDEVICE_UDP_H__
#include "SerialDevice.h"
#include "../AP_HAL/utility/Socket.h"
#include <AP_HAL/utility/Socket.h>
class UARTDevice: public SerialDevice {
public:

View File

@ -22,7 +22,7 @@
#include <netinet/tcp.h>
#include <string.h>
#include <arpa/inet.h>
#include "../AP_HAL/utility/RingBuffer.h"
#include <AP_HAL/utility/RingBuffer.h>
#include "UARTDevice.h"
#include "UDPDevice.h"

View File

@ -2,7 +2,7 @@
#define __AP_HAL_LINUX_UDPDEVICE_UDP_H__
#include "SerialDevice.h"
#include "../AP_HAL/utility/Socket.h"
#include <AP_HAL/utility/Socket.h>
class UDPDevice: public SerialDevice {
public: