AP_HAL: include stdbool.h for ARM build

This commit is contained in:
Andrew Tridgell 2013-01-02 14:22:36 +11:00
parent 4764a03aaa
commit d3f154bbae
2 changed files with 3 additions and 2 deletions

View File

@ -2,6 +2,9 @@
#ifndef __AP_HAL_H__
#define __AP_HAL_H__
#include <stdint.h>
#include <stdbool.h>
#include "AP_HAL_Namespace.h"
#include "AP_HAL_Boards.h"

View File

@ -2,8 +2,6 @@
#ifndef __AP_HAL_NAMESPACE_H__
#define __AP_HAL_NAMESPACE_H__
#include <stdint.h>
namespace AP_HAL {
/* Toplevel pure virtual class Hal.*/