Browse Source

AP_Compass: 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
7e997564bf
  1. 2
      libraries/AP_Compass/AP_Compass_AK8963.cpp
  2. 4
      libraries/AP_Compass/AP_Compass_AK8963.h
  3. 4
      libraries/AP_Compass/AP_Compass_HMC5843.h

2
libraries/AP_Compass/AP_Compass_AK8963.cpp

@ -20,7 +20,7 @@ @@ -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

4
libraries/AP_Compass/AP_Compass_AK8963.h

@ -3,8 +3,8 @@ @@ -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"

4
libraries/AP_Compass/AP_Compass_HMC5843.h

@ -3,8 +3,8 @@ @@ -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"

Loading…
Cancel
Save