2013-10-13 04:14:13 -03:00
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
//
# include "defines.h"
# include "APM_Config.h" // <== THIS INCLUDE, DO NOT EDIT IT. EVER.
///
/// DO NOT EDIT THIS INCLUDE - if you want to make a local change, make that
/// change in your local copy of APM_Config.h.
///
// Just so that it's completely clear...
# define ENABLED 1
# define DISABLED 0
// this avoids a very common config error
# define ENABLE ENABLED
# define DISABLE DISABLED
# ifndef MAV_SYSTEM_ID
// use 2 for antenna tracker by default
# define MAV_SYSTEM_ID 2
# endif
2014-03-02 03:00:37 -04:00
2014-10-06 05:01:54 -03:00
//////////////////////////////////////////////////////////////////////////////
// RC Channel definitions
//
# ifndef CH_YAW
# define CH_YAW CH_1 // RC input/output for yaw on channel 1
# endif
# ifndef CH_PITCH
# define CH_PITCH CH_2 // RC input/output for pitch on channel 2
# endif
2014-10-06 02:51:53 -03:00
//////////////////////////////////////////////////////////////////////////////
// yaw and pitch axis angle range defaults
//
# ifndef YAW_RANGE_DEFAULT
# define YAW_RANGE_DEFAULT 360
# endif
# ifndef PITCH_RANGE_DEFAULT
# define PITCH_RANGE_DEFAULT 180
# endif
2014-09-29 07:40:25 -03:00
//////////////////////////////////////////////////////////////////////////////
// Tracking definitions
//
# ifndef TRACKING_TIMEOUT_MS
# define TRACKING_TIMEOUT_MS 5000 // consider we've lost track of vehicle after 5 seconds with no position update. Used to update armed/disarmed status leds
# endif
2014-10-01 10:24:06 -03:00
# ifndef TRACKING_TIMEOUT_SEC
# define TRACKING_TIMEOUT_SEC 5.0f // consider we've lost track of vehicle after 5 seconds with no position update.
# endif
2015-04-26 23:24:47 -03:00
# ifndef DISTANCE_MIN_DEFAULT
# define DISTANCE_MIN_DEFAULT 5.0f // do not track targets within 5 meters
# endif
2014-09-29 07:40:25 -03:00
2014-03-02 03:00:37 -04:00
//////////////////////////////////////////////////////////////////////////////
// Developer Items
//
// use this to completely disable the CLI
# ifndef CLI_ENABLED
# define CLI_ENABLED ENABLED
# endif