AP_Compass: 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:49:52 -03:00 committed by Andrew Tridgell
parent b43bddc0af
commit 7e997564bf
3 changed files with 5 additions and 5 deletions

View File

@ -20,7 +20,7 @@
#if CONFIG_HAL_BOARD == HAL_BOARD_LINUX
#include "AP_Compass_AK8963.h"
#include "../AP_InertialSensor/AP_InertialSensor_MPU9250.h"
#include <AP_InertialSensor/AP_InertialSensor_MPU9250.h>
#define READ_FLAG 0x80
#define MPUREG_I2C_SLV0_ADDR 0x25

View File

@ -3,8 +3,8 @@
#define AP_Compass_AK8963_H
#include <AP_HAL/AP_HAL.h>
#include "../AP_Common/AP_Common.h"
#include "../AP_Math/AP_Math.h"
#include <AP_Common/AP_Common.h>
#include <AP_Math/AP_Math.h>
#include "Compass.h"
#include "AP_Compass_Backend.h"

View File

@ -3,8 +3,8 @@
#define AP_Compass_HMC5843_H
#include <AP_HAL/AP_HAL.h>
#include "../AP_Common/AP_Common.h"
#include "../AP_Math/AP_Math.h"
#include <AP_Common/AP_Common.h>
#include <AP_Math/AP_Math.h>
#include "Compass.h"
#include "AP_Compass_Backend.h"