mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
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
4479b0aff1
commit
d2adc99d3a
@ -22,7 +22,7 @@
|
|||||||
#define __AP_HAL_UTILITY_BETTERSTREAM_H__
|
#define __AP_HAL_UTILITY_BETTERSTREAM_H__
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include "../AP_HAL_Namespace.h"
|
#include <AP_HAL/AP_HAL_Namespace.h>
|
||||||
#include "Stream.h"
|
#include "Stream.h"
|
||||||
|
|
||||||
/* prog_char_t: */
|
/* prog_char_t: */
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#include <AP_Math/AP_Math.h>
|
#include <AP_Math/AP_Math.h>
|
||||||
#include "../AP_HAL_Namespace.h"
|
#include <AP_HAL/AP_HAL_Namespace.h>
|
||||||
#include "Print.h"
|
#include "Print.h"
|
||||||
using namespace AP_HAL;
|
using namespace AP_HAL;
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
#ifndef __AP_HAL_UTILITY_PRINT_H__
|
#ifndef __AP_HAL_UTILITY_PRINT_H__
|
||||||
#define __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 <inttypes.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#ifndef __AP_HAL_UTILITY_STREAM_H__
|
#ifndef __AP_HAL_UTILITY_STREAM_H__
|
||||||
#define __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"
|
#include "Print.h"
|
||||||
|
|
||||||
/* A simple Stream library modeled after the bits we actually use
|
/* A simple Stream library modeled after the bits we actually use
|
||||||
|
Loading…
Reference in New Issue
Block a user