AP_HAL_InertialSensor: 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:52:30 -03:00 committed by Andrew Tridgell
parent c007720fb7
commit 2c44f3e313
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@
#if CONFIG_HAL_BOARD == HAL_BOARD_LINUX
#include "AP_InertialSensor_LSM9DS0.h"
#include "../AP_HAL_Linux/GPIO.h"
#include <AP_HAL_Linux/GPIO.h>
extern const AP_HAL::HAL& hal;

View File

@ -12,7 +12,7 @@ extern const AP_HAL::HAL& hal;
#define MPU6000_DRDY_PIN 70
#elif CONFIG_HAL_BOARD == HAL_BOARD_LINUX
#if CONFIG_HAL_BOARD_SUBTYPE == HAL_BOARD_SUBTYPE_LINUX_ERLE || CONFIG_HAL_BOARD_SUBTYPE == HAL_BOARD_SUBTYPE_LINUX_PXF
#include "../AP_HAL_Linux/GPIO.h"
#include <AP_HAL_Linux/GPIO.h>
#define MPU6000_DRDY_PIN BBB_P8_14
#endif
#endif

View File

@ -20,7 +20,7 @@
#if CONFIG_HAL_BOARD == HAL_BOARD_LINUX
#include "AP_InertialSensor_MPU9250.h"
#include "../AP_HAL_Linux/GPIO.h"
#include <AP_HAL_Linux/GPIO.h>
extern const AP_HAL::HAL& hal;