Browse Source

AP_HAL: standardize inclusion of libaries headers

Do the missing header changes due to changing the code before the pr
getting accepted.
master
Lucas De Marchi 10 years ago committed by Andrew Tridgell
parent
commit
ca17b6155e
  1. 2
      libraries/AP_HAL/utility/BetterStream.h
  2. 2
      libraries/AP_HAL/utility/Print.cpp
  3. 2
      libraries/AP_HAL/utility/Print.h
  4. 2
      libraries/AP_HAL/utility/Stream.h

2
libraries/AP_HAL/utility/BetterStream.h

@ -22,7 +22,7 @@ @@ -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: */

2
libraries/AP_HAL/utility/Print.cpp

@ -25,7 +25,7 @@ @@ -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;

2
libraries/AP_HAL/utility/Print.h

@ -20,7 +20,7 @@ @@ -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
libraries/AP_HAL/utility/Stream.h

@ -2,7 +2,7 @@ @@ -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…
Cancel
Save