mirror of https://github.com/ArduPilot/ardupilot
AP_HAL: 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
55beb6bc0f
commit
ca17b6155e
|
@ -22,7 +22,7 @@
|
|||
#define __AP_HAL_UTILITY_BETTERSTREAM_H__
|
||||
|
||||
#include <stdarg.h>
|
||||
#include "../AP_HAL_Namespace.h"
|
||||
#include <AP_HAL/AP_HAL_Namespace.h>
|
||||
#include "Stream.h"
|
||||
|
||||
/* prog_char_t: */
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include <stdint.h>
|
||||
|
||||
#include <AP_Math/AP_Math.h>
|
||||
#include "../AP_HAL_Namespace.h"
|
||||
#include <AP_HAL/AP_HAL_Namespace.h>
|
||||
#include "Print.h"
|
||||
using namespace AP_HAL;
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#ifndef __AP_HAL_UTILITY_PRINT_H__
|
||||
#define __AP_HAL_UTILITY_PRINT_H__
|
||||
|
||||
#include "../AP_HAL_Namespace.h"
|
||||
#include <AP_HAL/AP_HAL_Namespace.h>
|
||||
|
||||
#include <inttypes.h>
|
||||
#include <string.h>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#ifndef __AP_HAL_UTILITY_STREAM_H__
|
||||
#define __AP_HAL_UTILITY_STREAM_H__
|
||||
|
||||
#include "../AP_HAL_Namespace.h"
|
||||
#include <AP_HAL/AP_HAL_Namespace.h>
|
||||
#include "Print.h"
|
||||
|
||||
/* A simple Stream library modeled after the bits we actually use
|
||||
|
|
Loading…
Reference in New Issue