AP_HAL_Mount: 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:44 -03:00 committed by Andrew Tridgell
parent 2c44f3e313
commit 2011c4d988
2 changed files with 3 additions and 3 deletions

View File

@ -27,8 +27,8 @@
#include <AP_GPS/AP_GPS.h>
#include <AP_AHRS/AP_AHRS.h>
#include <GCS_MAVLink/GCS_MAVLink.h>
#include "../RC_Channel/RC_Channel.h"
#include "../AP_SerialManager/AP_SerialManager.h"
#include <RC_Channel/RC_Channel.h>
#include <AP_SerialManager/AP_SerialManager.h>
// maximum number of mounts
#define AP_MOUNT_MAX_INSTANCES 1

View File

@ -4,7 +4,7 @@
#include <AP_HAL/AP_HAL.h>
#include <GCS_MAVLink/GCS_MAVLink.h>
#include <GCS_MAVLink/include/mavlink/v1.0/checksum.h>
#include "../AP_HAL/utility/RingBuffer.h"
#include <AP_HAL/utility/RingBuffer.h>
extern const AP_HAL::HAL& hal;