AP_Airspeed: Remove a number of unneeded top level includes

This commit is contained in:
Michael du Breuil 2019-06-26 19:38:33 -07:00 committed by Peter Barker
parent a6623bfad3
commit e43605cc9b
3 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,7 @@
#include <AP_HAL/AP_HAL.h> #include <AP_HAL/AP_HAL.h>
#include <AP_Param/AP_Param.h> #include <AP_Param/AP_Param.h>
#include <GCS_MAVLink/GCS_MAVLink.h> #include <GCS_MAVLink/GCS_MAVLink.h>
#include <AP_Baro/AP_Baro.h> #include <AP_Math/AP_Math.h>
class AP_Airspeed_Backend; class AP_Airspeed_Backend;

View File

@ -20,6 +20,7 @@
*/ */
#include "AP_Airspeed_SDP3X.h" #include "AP_Airspeed_SDP3X.h"
#include <GCS_MAVLink/GCS.h> #include <GCS_MAVLink/GCS.h>
#include <AP_Baro/AP_Baro.h>
#include <stdio.h> #include <stdio.h>

View File

@ -9,6 +9,7 @@
#include <AP_HAL/AP_HAL.h> #include <AP_HAL/AP_HAL.h>
#include <AP_Math/AP_Math.h> #include <AP_Math/AP_Math.h>
#include <GCS_MAVLink/GCS.h> #include <GCS_MAVLink/GCS.h>
#include <AP_Baro/AP_Baro.h>
#include "AP_Airspeed.h" #include "AP_Airspeed.h"