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:
Lucas De Marchi 2015-08-15 19:50:33 -03:00 committed by Andrew Tridgell
parent 55beb6bc0f
commit ca17b6155e
4 changed files with 4 additions and 4 deletions

View File

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

View File

@ -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;

View File

@ -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>

View File

@ -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