mirror of https://github.com/ArduPilot/ardupilot
AP_BoardConfig: correct include of AP_Vehicle_Type
This commit is contained in:
parent
083d4ac3ea
commit
9aaa6c49fa
|
@ -16,12 +16,13 @@
|
|||
* AP_BoardConfig - board specific configuration
|
||||
*/
|
||||
|
||||
#include <AP_HAL/AP_HAL.h>
|
||||
#include <AP_Common/AP_Common.h>
|
||||
#include <GCS_MAVLink/GCS.h>
|
||||
#include "AP_BoardConfig.h"
|
||||
#include <stdio.h>
|
||||
|
||||
#include <AP_Common/AP_Common.h>
|
||||
#include <AP_HAL/AP_HAL.h>
|
||||
#include <AP_RTC/AP_RTC.h>
|
||||
#include <AP_Vehicle/AP_Vehicle_Type.h>
|
||||
#include <GCS_MAVLink/GCS.h>
|
||||
|
||||
#if HAL_WITH_UAVCAN
|
||||
#include <AP_UAVCAN/AP_UAVCAN.h>
|
||||
|
@ -30,6 +31,8 @@
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#ifndef BOARD_TYPE_DEFAULT
|
||||
#define BOARD_TYPE_DEFAULT PX4_BOARD_AUTO
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue