mirror of https://github.com/ArduPilot/ardupilot
AP_Filesystem: rename HAL_MISSION_ENABLED to AP_MISSION_ENABLED
This commit is contained in:
parent
5ff268fa97
commit
936fef11e2
|
@ -49,7 +49,7 @@ static AP_Filesystem_Param fs_param;
|
|||
static AP_Filesystem_Sys fs_sys;
|
||||
|
||||
#include <AP_Mission/AP_Mission.h>
|
||||
#if HAL_MISSION_ENABLED
|
||||
#if AP_MISSION_ENABLED
|
||||
#include "AP_Filesystem_Mission.h"
|
||||
static AP_Filesystem_Mission fs_mission;
|
||||
#endif
|
||||
|
@ -65,7 +65,7 @@ const AP_Filesystem::Backend AP_Filesystem::backends[] = {
|
|||
{ "@PARAM/", fs_param },
|
||||
{ "@SYS/", fs_sys },
|
||||
{ "@SYS", fs_sys },
|
||||
#if HAL_MISSION_ENABLED
|
||||
#if AP_MISSION_ENABLED
|
||||
{ "@MISSION/", fs_mission },
|
||||
#endif
|
||||
};
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#include <GCS_MAVLink/MissionItemProtocol_Rally.h>
|
||||
#include <GCS_MAVLink/MissionItemProtocol_Fence.h>
|
||||
|
||||
#if HAL_MISSION_ENABLED
|
||||
#if AP_MISSION_ENABLED
|
||||
|
||||
extern const AP_HAL::HAL& hal;
|
||||
extern int errno;
|
||||
|
|
Loading…
Reference in New Issue