mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
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:
parent
d2adc99d3a
commit
77c236a6b7
@ -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:
|
||||
|
@ -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;
|
||||
|
||||
|
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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"
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user