mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
12 lines
250 B
C
12 lines
250 B
C
#pragma once
|
|
|
|
#include <AP_HAL/AP_HAL_Boards.h>
|
|
|
|
// Enabled 0 is compiled out
|
|
// Enabled 1 is always enabled on all vehicles
|
|
// Enabled 2 is enabled with dummy methods for tracker and blimp
|
|
|
|
#ifndef AP_FENCE_ENABLED
|
|
#define AP_FENCE_ENABLED 2
|
|
#endif
|