Advertisement
JetSerge

config.h

Nov 2nd, 2014
347
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 70.25 KB | None | 0 0
  1. #ifndef CONFIG_H_
  2. #define CONFIG_H_
  3.  
  4. /*************************************************************************************************/
  5. /****           CONFIGURABLE PARAMETERS                                                       ****/
  6. /*************************************************************************************************/
  7.  
  8. /* this file consists of several sections
  9.  * to create a working combination you must at least make your choices in section 1.
  10.  * 1 - BASIC SETUP - you must select an option in every block.
  11.  *      this assumes you have 4 channels connected to your board with standard ESCs and servos.
  12.  * 2 - COPTER TYPE SPECIFIC OPTIONS - you likely want to check for options for your copter type
  13.  * 3 - RC SYSTEM SETUP
  14.  * 4 - ALTERNATE CPUs & BOARDS - if you have
  15.  * 5 - ALTERNATE SETUP - select alternate RX (SBUS, PPM, etc.), alternate ESC-range, etc. here
  16.  * 6 - OPTIONAL FEATURES - enable nice to have features here (FlightModes, LCD, telemetry, battery monitor etc.)
  17.  * 7 - TUNING & DEVELOPER - if you know what you are doing; you have been warned
  18.  *     - (ESCs calibration, Dynamic Motor/Prop Balancing, Diagnostics,Memory savings.....)
  19.  * 8 - DEPRECATED - these features will be removed in some future release
  20.  */
  21.  
  22. /* Notes:
  23.  * 1. parameters marked with (*) in the comment are stored in eeprom and can be changed via serial monitor or LCD.
  24.  * 2. parameters marked with (**) in the comment are stored in eeprom and can be changed via the GUI
  25.  */
  26.  
  27.  
  28. /*************************************************************************************************/
  29. /*****************                                                                 ***************/
  30. /****************  SECTION  1 - BASIC SETUP                                                *******/
  31. /*****************                                                                 ***************/
  32. /*************************************************************************************************/
  33.  
  34.   /**************************    The type of multicopter    ****************************/
  35.     //#define GIMBAL
  36.     //#define BI
  37.     //#define TRI
  38.     //#define QUADP
  39.     #define QUADX
  40.     //#define Y4
  41.     //#define Y6
  42.     //#define HEX6
  43.     //#define HEX6X
  44.     //#define HEX6H  // New Model
  45.     //#define OCTOX8
  46.     //#define OCTOFLATP
  47.     //#define OCTOFLATX
  48.     //#define FLYING_WING
  49.     //#define VTAIL4
  50.     //#define AIRPLANE
  51.     //#define SINGLECOPTER
  52.     //#define DUALCOPTER
  53.     //#define HELI_120_CCPM
  54.     //#define HELI_90_DEG
  55.  
  56.   /****************************    Motor minthrottle    *******************************/
  57.     /* Set the minimum throttle command sent to the ESC (Electronic Speed Controller)
  58.        This is the minimum value that allow motors to run at a idle speed  */
  59.     //#define MINTHROTTLE 1300 // for Turnigy Plush ESCs 10A
  60.     //#define MINTHROTTLE 1120 // for Super Simple ESCs 10A
  61.     //#define MINTHROTTLE 1064 // special ESC (simonk)
  62.     //#define MINTHROTTLE 1050 // for brushed ESCs like ladybird
  63.     //#define MINTHROTTLE 1150 // (*) (**)
  64.     #define MINTHROTTLE 1200 // (*) (**)
  65.  
  66.   /****************************    Motor maxthrottle    *******************************/
  67.     /* this is the maximum value for the ESCs at full power, this value can be increased up to 2000 */
  68.     #define MAXTHROTTLE 1950
  69.  
  70.   /****************************    Mincommand          *******************************/
  71.     /* this is the value for the ESCs when they are not armed
  72.        in some cases, this value must be lowered down to 900 for some specific ESCs, otherwise they failed to initiate */
  73.     //#define MINCOMMAND  1000
  74.     #define MINCOMMAND  1000
  75.  
  76.   /**********************************  I2C speed for old WMP config (useless config for other sensors)  *************/
  77.    // #define I2C_SPEED 100000L     //100kHz normal mode, this value must be used for a genuine WMP
  78.     #define I2C_SPEED 400000L   //400kHz fast mode, it works only with some WMP clones
  79.  
  80.   /***************************    Internal i2c Pullups   ********************************/
  81.     /* enable internal I2C pull ups (in most cases it is better to use external pullups) */
  82.     //#define INTERNAL_I2C_PULLUPS
  83.  
  84.   /**************************************************************************************/
  85.   /*****************          boards and sensor definitions            ******************/
  86.   /**************************************************************************************/
  87.  
  88.     /***************************    Combined IMU Boards    ********************************/
  89.       /* if you use a specific sensor board:
  90.          please submit any correction to this list.
  91.            Note from Alex: I only own some boards, for other boards, I'm not sure, the info was gathered via rc forums, be cautious */
  92.       //#define FFIMUv1         // first 9DOF+baro board from Jussi, with HMC5843                   <- confirmed by Alex
  93.       //#define FFIMUv2         // second version of 9DOF+baro board from Jussi, with HMC5883       <- confirmed by Alex
  94.       //#define FREEIMUv1       // v0.1 & v0.2 & v0.3 version of 9DOF board from Fabio
  95.       //#define FREEIMUv03      // FreeIMU v0.3 and v0.3.1
  96.       //#define FREEIMUv035     // FreeIMU v0.3.5 no baro
  97.       //#define FREEIMUv035_MS  // FreeIMU v0.3.5_MS                                                <- confirmed by Alex
  98.       //#define FREEIMUv035_BMP // FreeIMU v0.3.5_BMP
  99.       //#define FREEIMUv04      // FreeIMU v0.4 with MPU6050, HMC5883L, MS561101BA                  <- confirmed by Alex
  100.       //#define FREEIMUv043     // same as FREEIMUv04 with final MPU6050 (with the right ACC scale)
  101.       //#define NANOWII         // the smallest multiwii FC based on MPU6050 + pro micro based proc <- confirmed by Alex
  102.       //#define PIPO            // 9DOF board from erazz
  103.       //#define QUADRINO        // full FC board 9DOF+baro board from witespy  with BMP085 baro     <- confirmed by Alex
  104.       //#define QUADRINO_ZOOM   // full FC board 9DOF+baro board from witespy  second edition
  105.       //#define QUADRINO_ZOOM_MS// full FC board 9DOF+baro board from witespy  second edition       <- confirmed by Alex
  106.       //#define ALLINONE        // full FC board or standalone 9DOF+baro board from CSG_EU
  107.       //#define AEROQUADSHIELDv2
  108.       //#define ATAVRSBIN1      // Atmel 9DOF (Contribution by EOSBandi). requires 3.3V power.
  109.       //#define SIRIUS          // Sirius Navigator IMU                                             <- confirmed by Alex
  110.       //#define SIRIUSGPS       // Sirius Navigator IMU  using external MAG on GPS board            <- confirmed by Alex
  111.       //#define SIRIUS600       // Sirius Navigator IMU  using the WMP for the gyro
  112.       //#define SIRIUS_AIR      // Sirius Navigator IMU 6050 32U4 from MultiWiiCopter.com           <- confirmed by Alex
  113.       //#define SIRIUS_AIR_GPS  // Sirius Navigator IMU 6050 32U4 from MultiWiiCopter.com with GPS/MAG remote located
  114.       //#define SIRIUS_MEGAv5_OSD //  Paris_Siriusβ„’ ITG3050,BMA280,MS5611,HMC5883,uBlox  http://www.Multiwiicopter.com <- confirmed by Alex
  115.       //#define MINIWII         // Jussi's MiniWii Flight Controller                                <- confirmed by Alex
  116.       //#define MICROWII        // MicroWii 10DOF with ATmega32u4, MPU6050, HMC5883L, MS561101BA from http://flyduino.net/
  117.       //#define CITRUSv2_1      // CITRUS from qcrc.ca
  118.       //#define CHERRY6DOFv1_0
  119.       //#define DROTEK_10DOF    // Drotek 10DOF with ITG3200, BMA180, HMC5883, BMP085, w or w/o LLC
  120.       //#define DROTEK_10DOF_MS // Drotek 10DOF with ITG3200, BMA180, HMC5883, MS5611, LLC
  121.       //#define DROTEK_6DOFv2   // Drotek 6DOF v2
  122.       //#define DROTEK_6DOF_MPU // Drotek 6DOF with MPU6050
  123.       //#define DROTEK_10DOF_MPU//
  124.       //#define MONGOOSE1_0     // mongoose 1.0    http://store.ckdevices.com/
  125.       //#define CRIUS_LITE      // Crius MultiWii Lite
  126.       //#define CRIUS_SE        // Crius MultiWii SE
  127.       //#define CRIUS_SE_v2_0   // Crius MultiWii SE 2.0 with MPU6050, HMC5883 and BMP085
  128.       //#define OPENLRSv2MULTI  // OpenLRS v2 Multi Rc Receiver board including ITG3205 and ADXL345
  129.       //#define BOARD_PROTO_1   // with MPU6050 + HMC5883L + MS baro
  130.       //#define BOARD_PROTO_2   // with MPU6050 + slave  MAG3110 + MS baro
  131.       //#define GY_80           // Chinese 10 DOF with  L3G4200D ADXL345 HMC5883L BMP085, LLC
  132.       //#define GY_85           // Chinese 9 DOF with  ITG3205 ADXL345 HMC5883L LLC
  133.       //#define GY_86           // Chinese 10 DOF with  MPU6050 HMC5883L MS5611, LLC
  134.       //#define GY_88 // Chinese 10 DOF with MPU6050 HMC5883L BMP085, LLC
  135.       //#define GY_521          // Chinese 6  DOF with  MPU6050, LLC
  136.       //#define INNOVWORKS_10DOF // with ITG3200, BMA180, HMC5883, BMP085 available here http://www.diymulticopter.com
  137.       //#define INNOVWORKS_6DOF // with ITG3200, BMA180 available here http://www.diymulticopter.com
  138.       //#define MultiWiiMega    // MEGA + MPU6050+HMC5883L+MS5611 available here http://www.diymulticopter.com
  139.       //#define PROTO_DIY       // 10DOF mega board
  140.       //#define IOI_MINI_MULTIWII// www.bambucopter.com
  141.       //#define Bobs_6DOF_V1     // BobsQuads 6DOF V1 with ITG3200 & BMA180
  142.       //#define Bobs_9DOF_V1     // BobsQuads 9DOF V1 with ITG3200, BMA180 & HMC5883L
  143.       //#define Bobs_10DOF_BMP_V1 // BobsQuads 10DOF V1 with ITG3200, BMA180, HMC5883L & BMP180 - BMP180 is software compatible with BMP085
  144.       //#define FLYDUINO_MPU       // MPU6050 Break Out onboard 3.3V reg
  145.       //#define CRIUS_AIO_PRO_V1
  146.       //#define DESQUARED6DOFV2GO  // DEsquared V2 with ITG3200 only
  147.       //#define DESQUARED6DOFV4    // DEsquared V4 with MPU6050
  148.       //#define LADYBIRD
  149.       //#define MEGAWAP_V2_STD     // available here: http://www.multircshop.com                    <- confirmed by Alex
  150.       //#define MEGAWAP_V2_ADV
  151.       //#define HK_MultiWii_SE_V2  // Hobbyking board with MPU6050 + HMC5883L + BMP085
  152.       //#define HK_MultiWii_328P   // Also labeled "Hobbybro" on the back.  ITG3205 + BMA180 + BMP085 + NMC5583L + DSM2 Connector (Spektrum Satellite)  
  153.       //#define RCNet_FC           // RCNet FC with MPU6050 and MS561101BA  http://www.rcnet.com
  154.       //#define RCNet_FC_GPS       // RCNet FC with MPU6050 + MS561101BA + HMC5883L + UBLOX GPS http://www.rcnet.com
  155.       //#define FLYDU_ULTRA        // MEGA+10DOF+MT3339 FC
  156.       //#define DIYFLYING_MAGE_V1  // diyflying 10DOF mega board with MPU6050 + HMC5883L + BMP085 http://www.indoor-flying.hk
  157.       //#define MultiWii_32U4_SE         // Hextronik MultiWii_32U4_SE
  158.       //#define MultiWii_32U4_SE_no_baro // Hextronik MultiWii_32U4_SE without the MS561101BA to free flash-memory for other functions
  159.       //#define Flyduino9DOF       // Flyduino 9DOF IMU MPU6050+HMC5883l
  160.       //#define Nano_Plane         // Multiwii Plane version with tail-front LSM330 sensor http://www.radiosait.ru/en/page_5324.html
  161.      
  162.      
  163.      // #define MX_MINI_MultiWii_V1_2   // MPU6050 + BMP085 + HMC5883 + DMS2_RX(8CH PPM)
  164.      // #define MX_MINI_AIO_PRO_V1    // MPU6050 + BMP085 + HMC5883 + DMS2_RX(8CH PPM)
  165.       #define MX_NANO_MultiWii_V1_31   // MPU6050 + BMP085 + HMC5883 + DMS2_RX(8CH PPM)
  166.      
  167.      
  168.     /***************************    independent sensors    ********************************/
  169.       /* leave it commented if you already checked a specific board above */
  170.       /* I2C gyroscope */
  171.       //#define WMP
  172.       //#define ITG3200
  173.       //#define MPU3050
  174.       //#define L3G4200D
  175.       //#define MPU6050       //combo + ACC
  176.       //#define LSM330        //combo + ACC
  177.      
  178.       /* I2C accelerometer */
  179.       //#define MMA7455
  180.       //#define ADXL345
  181.       //#define BMA020
  182.       //#define BMA180
  183.       //#define BMA280
  184.       //#define LIS3LV02
  185.       //#define LSM303DLx_ACC
  186.       //#define MMA8451Q
  187.  
  188.       /* I2C barometer */
  189.       //#define BMP085
  190.       //#define MS561101BA
  191.  
  192.       /* I2C magnetometer */
  193.       //#define HMC5843
  194.       //#define HMC5883
  195.       //#define AK8975
  196.       //#define MAG3110
  197.  
  198.       /* Sonar */ // for visualization purpose currently - no control code behind
  199.       //#define SRF02 // use the Devantech SRF i2c sensors
  200.       //#define SRF08
  201.       //#define SRF10
  202.       //#define SRF23
  203.  
  204.       /* ADC accelerometer */ // for 5DOF from sparkfun, uses analog PIN A1/A2/A3
  205.       //#define ADCACC
  206.  
  207.       /* enforce your individual sensor orientation - even overrides board specific defaults */
  208.       //#define FORCE_ACC_ORIENTATION(X, Y, Z)  {imu.accADC[ROLL]  =  Y; imu.accADC[PITCH]  = -X; imu.accADC[YAW]  = Z;}
  209.       //#define FORCE_GYRO_ORIENTATION(X, Y, Z) {imu.gyroADC[ROLL] = -Y; imu.gyroADC[PITCH] =  X; imu.gyroADC[YAW] = Z;}
  210.       //#define FORCE_MAG_ORIENTATION(X, Y, Z)  {imu.magADC[ROLL]  =  X; imu.magADC[PITCH]  =  Y; imu.magADC[YAW]  = Z;}
  211.  
  212.       /* Board orientation shift */
  213.       /* If you have frame designed only for + mode and you cannot rotate FC phisycally for flying in X mode (or vice versa)
  214.        * you can use one of of this options for virtual sensors rotation by 45 deegres, then set type of multicopter according to flight mode.
  215.        * Check motors order and directions of motors rotation for matching with new front point!  Uncomment only one option! */
  216.       //#define SENSORS_TILT_45DEG_RIGHT        // rotate the FRONT 45 degres clockwise
  217.       //#define SENSORS_TILT_45DEG_LEFT         // rotate the FRONT 45 degres counterclockwise
  218.  
  219.  
  220. /*************************************************************************************************/
  221. /*****************                                                                 ***************/
  222. /****************  SECTION  2 - COPTER TYPE SPECIFIC OPTIONS                               *******/
  223. /*****************                                                                 ***************/
  224. /*************************************************************************************************/
  225.   /********************************  PID Controller *********************************/
  226.     /* choose one of the alternate PID control algorithms
  227.      * 1 = evolved oldschool algorithm (similar to v2.2)
  228.      * 2 = new experimental algorithm from Alex Khoroshko - unsupported - http://www.multiwii.com/forum/viewtopic.php?f=8&t=3671&start=10#p37387
  229.      * */
  230.     #define PID_CONTROLLER 1
  231.  
  232.     /* NEW: not used anymore for servo coptertypes  <== NEEDS FIXING - MOVE TO WIKI */
  233.     #define YAW_DIRECTION 1
  234.     //#define YAW_DIRECTION -1 // if you want to reverse the yaw correction direction
  235.  
  236.     #define ONLYARMWHENFLAT //prevent the copter from arming when the copter is tilted
  237.  
  238.    /********************************    ARM/DISARM    *********************************/
  239.    /* optionally disable stick combinations to arm/disarm the motors.
  240.      * In most cases one of the two options to arm/disarm via TX stick is sufficient */
  241.     #define ALLOW_ARM_DISARM_VIA_TX_YAW
  242.     //#define ALLOW_ARM_DISARM_VIA_TX_ROLL
  243.  
  244.     /********************************    SERVOS      *********************************/
  245.     /* info on which servos connect where and how to setup can be found here
  246.      * http://www.multiwii.com/wiki/index.php?title=Config.h#Servos_configuration
  247.      */
  248.  
  249.     /* Do not move servos if copter is unarmed
  250.      * It is a quick hack to overcome feedback tail wigglight when copter has a flexibile
  251.      * landing gear
  252.     */
  253.     //#define DISABLE_SERVOS_WHEN_UNARMED
  254.  
  255.  
  256.     /* if you want to preset min/middle/max values for servos right after flashing, because of limited physical
  257.      * room for servo travel, then you must enable and set all three following options */
  258.      //#define SERVO_MIN  {1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020}
  259.      //#define  SERVO_MAX {2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000}
  260.      //#define  SERVO_MID {1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500} // (*)
  261.      //#define FORCE_SERVO_RATES      {30,30,100,100,100,100,100,100} // 0 = normal, 1= reverse
  262.  
  263.   /***********************          Cam Stabilisation             ***********************/
  264.     /* The following lines apply only for a pitch/roll tilt stabilization system. Uncomment the first or second line to activate it */
  265.     //#define SERVO_MIX_TILT
  266.     //#define SERVO_TILT
  267.  
  268.     /* camera trigger function : activated via Rc Options in the GUI, servo output=A2 on promini */
  269.     // trigger interval can be changed via (*GUI*) or via AUX channel
  270.     //#define CAMTRIG
  271.     #define CAM_TIME_HIGH 1000   // the duration of HIGH state servo expressed in ms
  272.  
  273.   /***********************          Airplane                       ***********************/
  274.     //#define USE_THROTTLESERVO // For use of standard 50Hz servo on throttle.
  275.  
  276.     //#define FLAPPERONS    AUX4          // Mix Flaps with Aileroins.
  277.     #define FLAPPERON_EP   { 1500, 1700 } // Endpooints for flaps on a 2 way switch else set {1020,2000} and program in radio.
  278.     #define FLAPPERON_INVERT { -1, 1 }    // Change direction om flapperons { Wing1, Wing2 }
  279.    
  280.     //#define FLAPS                       // Traditional Flaps on SERVO3.
  281.     //#define FLAPSPEED     3             // Make flaps move slowm Higher value is Higher Speed.
  282.  
  283.   /***********************      Common for Heli & Airplane         ***********************/
  284.  
  285.     /* Governor: attempts to maintain rpm through pitch and voltage changes
  286.      * predictive approach: observe input signals and voltage and guess appropriate corrections.
  287.      * (the throttle curve must leave room for the governor, so 0-50-75-80-80 is ok, 0-50-95-100-100 is _not_ ok.
  288.      * Can be toggled via aux switch.
  289.      */
  290.     //#define GOVERNOR_P 7     // (*) proportional factor. Higher value -> higher throttle increase. Must be >=1; 0 = turn off
  291.     //#define GOVERNOR_D 4     // (*) decay timing. Higher value -> takes longer to return throttle to normal. Must be >=1;
  292.  
  293.     //#define VOLTAGEDROP_COMPENSATION // voltage impact correction
  294.  
  295.   /***********************          Heli                           ***********************/
  296.     /* Channel to control CollectivePitch */
  297.     #define COLLECTIVE_PITCH      THROTTLE
  298.  
  299.     /* Limit the range of Collective Pitch. 100% is Full Range each way and position for Zero Pitch */
  300.     #define COLLECTIVE_RANGE { 80, 0, 80 }// {Min%, ZeroPitch offset from 1500, Max%}.
  301.     #define YAWMOTOR                 0       // If a motor is used as YAW Set to 1 else set to 0.
  302.  
  303.     /* Servo mixing for heli 120
  304.                          {Coll,Nick,Roll} */
  305.     #define SERVO_NICK   { +10, -10,  0 }
  306.     #define SERVO_LEFT   { +10, +5, +10 }
  307.     #define SERVO_RIGHT  { +10, +5, -10 }
  308.  
  309.     /* Limit Maximum controll for Roll & Nick  in 0-100% */
  310.     #define CONTROL_RANGE   { 100, 100 }      //  { ROLL,PITCH }
  311.  
  312.     /* use servo code to drive the throttle output. You want this for analog servo driving the throttle on IC engines.
  313.        if inactive, throttle output will be treated as a motor output, so it can drive an ESC */
  314.     //#define HELI_USE_SERVO_FOR_THROTTLE
  315.  
  316.   /***********************      your individual mixing     ***********************/
  317.     /* if you want to override an existing entry in the mixing table, you may want to avoid editing the
  318.      * mixTable() function for every version again and again.
  319.      * howto: http://www.multiwii.com/wiki/index.php?title=Config.h#Individual_Mixing
  320.      */
  321.     //#define MY_PRIVATE_MIXING "filename.h"
  322.  
  323.   /***********************      your individual defaults     ***********************/
  324.     /* if you want to replace the hardcoded default values with your own (e.g. from a previous save to an .mwi file),
  325.      * you may want to avoid editing the LoadDefaults() function for every version again and again.
  326.      * http://www.multiwii.com/wiki/index.php?title=Config.h#Individual_defaults
  327.      */
  328.     //#define MY_PRIVATE_DEFAULTS "filename.h"
  329.  
  330.  
  331. /*************************************************************************************************/
  332. /*****************                                                                 ***************/
  333. /****************  SECTION  3 - RC SYSTEM SETUP                                            *******/
  334. /*****************                                                                 ***************/
  335. /*************************************************************************************************/
  336.  
  337.   /* note: no need to uncomment something in this section if you use a standard receiver */
  338.  
  339. /****************************    EXTENDED AUX STATES    ***********************************/
  340. /* If you uncomment this line, you can use six states for each of the aux channels (AUX1-AUX4)
  341. to control your copter.
  342. Channel values
  343. 1000-1230
  344. 1231-1360
  345. 1361-1490
  346. 1491-1620
  347. 1621-1749
  348. 1750-
  349.  
  350. At this moment you can use this function only with WinGUI 2.3 release. MultiWiiConf does not support it yet
  351. */
  352.  
  353. //#define EXTENDED_AUX_STATES
  354.  
  355.  
  356.   /**************************************************************************************/
  357.   /********                       special receiver types             ********************/
  358.   /**************************************************************************************/
  359.  
  360.     /****************************    PPM Sum Reciver    ***********************************/
  361.       /* The following lines apply only for specific receiver with only one PPM sum signal, on digital PIN 2
  362.          Select the right line depending on your radio brand. Feel free to modify the order in your PPM order is different */
  363.       //#define SERIAL_SUM_PPM         PITCH,YAW,THROTTLE,ROLL,AUX1,AUX2,AUX3,AUX4,8,9,10,11 //For Graupner/Spektrum
  364.       //#define SERIAL_SUM_PPM         ROLL,PITCH,THROTTLE,YAW,AUX1,AUX2,AUX3,AUX4,8,9,10,11 //For Robe/Hitec/Futaba
  365.       //#define SERIAL_SUM_PPM         ROLL,PITCH,YAW,THROTTLE,AUX1,AUX2,AUX3,AUX4,8,9,10,11 //For Multiplex
  366.       //#define SERIAL_SUM_PPM         PITCH,ROLL,THROTTLE,YAW,AUX1,AUX2,AUX3,AUX4,8,9,10,11 //For some Hitec/Sanwa/Others
  367.  
  368.       // Uncommenting following line allow to connect PPM_SUM receiver to standard THROTTLE PIN on MEGA boards (eg. A8 in CRIUS AIO)
  369.       //#define PPM_ON_THROTTLE
  370.  
  371.     /**********************    Spektrum Satellite Reciver    *******************************/
  372.       /* The following lines apply only for Spektrum Satellite Receiver
  373.          Spektrum Satellites are 3V devices.  DO NOT connect to 5V!
  374.          For MEGA boards, attach sat grey wire to RX1, pin 19. Sat black wire to ground. Sat orange wire to Mega board's 3.3V (or any other 3V to 3.3V source).
  375.          For PROMINI, attach sat grey to RX0.  Attach sat black to ground. */
  376.       //#define SPEKTRUM 1024
  377.       //#define SPEKTRUM 2048
  378.       //#define RX_SERIAL_PORT 1    // Forced to 0 on Pro Mini and single serial boards; Set to your choice of 0, 1, or 2 on any Mega based board (defaults to 1 on Mega).
  379.       //**************************
  380.       // Defines that allow a "Bind" of a Spektrum or Compatible Remote Receiver (aka Satellite) via Configuration GUI.
  381.       //   Bind mode will be same as declared above, if your TX is capable.
  382.       //   Ground, Power, and Signal must come from three adjacent pins.
  383.       //   By default, these are Ground=4, Power=5, Signal=6.  These pins are in a row on most MultiWii shield boards. Pins can be overriden below.  
  384.       //   Normally use 3.3V regulator is needed on the power pin!!  If your satellite hangs during bind (blinks, but won't complete bind with a solid light), go direct 5V on all pins.
  385.       //**************************
  386.       //   For Pro Mini, the connector for the Satellite that resides on the FTDI can be unplugged and moved to these three adjacent pins.
  387.       //#define SPEK_BIND             //Un-Comment for Spektrum Satellie Bind Support.  Code is ~420 bytes smaller without it.
  388.       //#define SPEK_BIND_GROUND 4
  389.       //#define SPEK_BIND_POWER  5
  390.       //#define SPEK_BIND_DATA   6
  391.  
  392.     /*******************************    SBUS RECIVER    ************************************/
  393.       /* The following line apply only for Futaba S-Bus Receiver on MEGA boards or PROMICRO boards.
  394.          You have to invert the S-Bus-Serial Signal e.g. with a Hex-Inverter like IC SN74 LS 04 */
  395.       //#define SBUS     PITCH,YAW,THROTTLE,ROLL,AUX1,AUX2,AUX3,AUX4,8,9,10,11,12,13,14,15,16,17  // dsm2 orangerx
  396.       //#define SBUS     ROLL,PITCH,THROTTLE,YAW,AUX1,AUX2,AUX3,AUX4,8,9,10,11,12,13,14,15,16,17  // T14SG
  397.       //#define RX_SERIAL_PORT 1
  398.       #define SBUS_MID_OFFSET 988 //SBUS Mid-Point at 1500
  399.  
  400.     /******************************* HOTT RECIVER ************************************/
  401.     /* Graupner Hott HD */
  402.     //#define SUMD PITCH,YAW,THROTTLE,ROLL,AUX1,AUX2,AUX3,AUX4
  403.     //#define RX_SERIAL_PORT 1
  404.  
  405. /*************************************************************************************************/
  406. /*****************                                                                 ***************/
  407. /****************  SECTION  4 - ALTERNATE CPUs & BOARDS                                    *******/
  408. /*****************                                                                 ***************/
  409. /*************************************************************************************************/
  410.  
  411.   /**************************************************************************************/
  412.   /********                      Promini Specifig Settings           ********************/
  413.   /**************************************************************************************/
  414.  
  415.     /**************************    Hexa Motor 5 & 6 Pins    *******************************/
  416.       /* PIN A0 and A1 instead of PIN D5 & D6 for 6 motors config and promini config
  417.          This mod allow the use of a standard receiver on a pro mini
  418.          (no need to use a PPM sum receiver) */
  419.       //#define A0_A1_PIN_HEX
  420.  
  421.     /*********************************    Aux 2 Pin     ***********************************/
  422.       /* possibility to use PIN8 or PIN12 as the AUX2 RC input (only one, not both)
  423.          it deactivates in this case the POWER PIN (pin 12) or the BUZZER PIN (pin 8) */
  424.       //#define RCAUXPIN8
  425.       //#define RCAUXPIN12
  426.  
  427.  
  428.   /**************************************************************************************/
  429.   /*****************             Teensy 2.0 Support                    ******************/
  430.   /**************************************************************************************/
  431.     /* uncomment this if you use a teensy 2.0 with teensyduino
  432.        it needs to run at 16MHz */
  433.     //#define TEENSY20
  434.  
  435.  
  436.   /**************************************************************************************/
  437.   /********   Settings for ProMicro, Leonardo and other Atmega32u4 Boards     ***********/
  438.   /**************************************************************************************/
  439.  
  440.     /*********************************    pin Layout     **********************************/
  441.       /* activate this for a better pinlayout if all pins can be used => not possible on ProMicro */
  442.       //#define A32U4ALLPINS
  443.  
  444.     /**********************************    PWM Setup     **********************************/
  445.       /* activate all 6 hardware PWM outputs Motor 5 = D11 and 6 = D13.
  446.          note: not possible on the sparkfun promicro (pin 11 & 13 are not broken out there)
  447.          if activated:
  448.          Motor 1-6 = 10-bit hardware PWM
  449.          Motor 7-8 = 8-bit Software PWM
  450.          Servos    = 8-bit Software PWM
  451.          if deactivated:
  452.          Motor 1-4 = 10-bit hardware PWM
  453.          Motor 5-8 = 10-bit Software PWM
  454.          Servos    = 10-bit Software PWM */
  455.       //#define HWPWM6
  456.  
  457.     /**********************************    Aux 2 Pin     **********************************/
  458.       /* AUX2 pin on pin RXO */
  459.       //#define RCAUX2PINRXO
  460.  
  461.       /* aux2 pin on pin D17 (RXLED) */
  462.       //#define RCAUX2PIND17
  463.  
  464.     /**********************************    Buzzer Pin    **********************************/
  465.       /* this moves the Buzzer pin from TXO to D8 for use with ppm sum or spectrum sat. RX (not needed if A32U4ALLPINS is active) */
  466.       //#define D8BUZZER
  467.  
  468.     /***********************      Promicro version related     ****************************/
  469.       /* Inverted status LED for Promicro ver 10 */
  470.       //#define PROMICRO10
  471.  
  472.  
  473.   /**************************************************************************************/
  474.   /********                      override default pin assignments    ********************/
  475.   /**************************************************************************************/
  476.  
  477.   /* only enable any of this if you must change the default pin assignment, e.g. your board does not have a specific pin */
  478.   /* you may need to change PINx and PORTx plus #shift according to the desired pin! */
  479.   //#define OVERRIDE_V_BATPIN                   A0 // instead of A3    // Analog PIN 3
  480.  
  481.   //#define OVERRIDE_PSENSORPIN                 A1 // instead of A2    // Analog PIN 2
  482.  
  483.   //#define OVERRIDE_LEDPIN_PINMODE             pinMode (A1, OUTPUT); // use A1 instead of d13
  484.   //#define OVERRIDE_LEDPIN_TOGGLE              PINC |= 1<<1; // PINB |= 1<<5;     //switch LEDPIN state (digital PIN 13)
  485.   //#define OVERRIDE_LEDPIN_OFF                 PORTC &= ~(1<<1); // PORTB &= ~(1<<5);
  486.   //#define OVERRIDE_LEDPIN_ON                  PORTC |= 1<<1;    // was PORTB |= (1<<5);
  487.  
  488.   //#define OVERRIDE_BUZZERPIN_PINMODE          pinMode (A2, OUTPUT); // use A2 instead of d8
  489.   //#define OVERRIDE_BUZZERPIN_ON               PORTC |= 1<<2 //PORTB |= 1;
  490.   //#define OVERRIDE_BUZZERPIN_OFF              PORTC &= ~(1<<2); //PORTB &= ~1;
  491.  
  492. /*************************************************************************************************/
  493. /*****************                                                                 ***************/
  494. /****************  SECTION  5 - ALTERNATE SETUP                                            *******/
  495. /*****************                                                                 ***************/
  496. /*************************************************************************************************/
  497.  
  498.   /******                Serial com speed    *********************************/
  499.     /* This is the speed of the serial interfaces */
  500.     #define SERIAL0_COM_SPEED 115200
  501.     #define SERIAL1_COM_SPEED 115200
  502.     #define SERIAL2_COM_SPEED 115200
  503.     #define SERIAL3_COM_SPEED 115200
  504.  
  505.     /* interleaving delay in micro seconds between 2 readings WMP/NK in a WMP+NK config
  506.        if the ACC calibration time is very long (20 or 30s), try to increase this delay up to 4000
  507.        it is relevent only for a conf with NK */
  508.     #define INTERLEAVING_DELAY 3000
  509.  
  510.     /* when there is an error on I2C bus, we neutralize the values during a short time. expressed in microseconds
  511.        it is relevent only for a conf with at least a WMP */
  512.     #define NEUTRALIZE_DELAY 100000
  513.  
  514.  
  515.   /**************************************************************************************/
  516.   /********                              Gyro filters                ********************/
  517.   /**************************************************************************************/
  518.  
  519.     /*********************    Lowpass filter for some gyros    ****************************/
  520.       /* ITG3200 & ITG3205 Low pass filter setting. In case you cannot eliminate all vibrations to the Gyro, you can try
  521.          to decrease the LPF frequency, only one step per try. As soon as twitching gone, stick with that setting.
  522.          It will not help on feedback wobbles, so change only when copter is randomly twiching and all dampening and
  523.          balancing options ran out. Uncomment only one option!
  524.          IMPORTANT! Change low pass filter setting changes PID behaviour, so retune your PID's after changing LPF.*/
  525.       //#define ITG3200_LPF_256HZ     // This is the default setting, no need to uncomment, just for reference
  526.       //#define ITG3200_LPF_188HZ
  527.       //#define ITG3200_LPF_98HZ
  528.       #define ITG3200_LPF_42HZ
  529.       //#define ITG3200_LPF_20HZ
  530.       //#define ITG3200_LPF_10HZ      // Use this only in extreme cases, rather change motors and/or props
  531.  
  532.       /* MPU6050 Low pass filter setting. In case you cannot eliminate all vibrations to the Gyro, you can try
  533.          to decrease the LPF frequency, only one step per try. As soon as twitching gone, stick with that setting.
  534.          It will not help on feedback wobbles, so change only when copter is randomly twiching and all dampening and
  535.          balancing options ran out. Uncomment only one option!
  536.          IMPORTANT! Change low pass filter setting changes PID behaviour, so retune your PID's after changing LPF.*/
  537.       //#define MPU6050_LPF_256HZ     // This is the default setting, no need to uncomment, just for reference
  538.       //#define MPU6050_LPF_188HZ
  539.       //#define MPU6050_LPF_98HZ
  540.       #define MPU6050_LPF_42HZ
  541.       //#define MPU6050_LPF_20HZ
  542.       //#define MPU6050_LPF_10HZ
  543.       //#define MPU6050_LPF_5HZ       // Use this only in extreme cases, rather change motors and/or props
  544.  
  545.     /******                Gyro smoothing    **********************************/
  546.       /* GYRO_SMOOTHING. In case you cannot reduce vibrations _and_ _after_ you have tried the low pass filter options, you
  547.          may try this gyro smoothing via averaging. Not suitable for multicopters!
  548.          Good results for helicopter, airplanes and flying wings (foamies) with lots of vibrations.*/
  549.       //#define GYRO_SMOOTHING {20, 20, 3}    // (*) separate averaging ranges for roll, pitch, yaw
  550.  
  551.     /************************    Moving Average Gyros    **********************************/
  552.       //#define MMGYRO 10                      // (*) Active Moving Average Function for Gyros
  553.       //#define MMGYROVECTORLENGTH 15          // Length of Moving Average Vector (maximum value for tunable MMGYRO
  554.       /* Moving Average ServoGimbal Signal Output */
  555.       //#define MMSERVOGIMBAL                  // Active Output Moving Average Function for Servos Gimbal
  556.       //#define MMSERVOGIMBALVECTORLENGHT 32   // Lenght of Moving Average Vector
  557.  
  558.   /************************    Analog Reads              **********************************/
  559.     /* if you want faster analog Reads, enable this. It may result in less accurate results, especially for more than one analog channel */
  560.     //#define FASTER_ANALOG_READS
  561.  
  562. /*************************************************************************************************/
  563. /*****************                                                                 ***************/
  564. /****************  SECTION  6 - OPTIONAL FEATURES                                          *******/
  565. /*****************                                                                 ***************/
  566. /*************************************************************************************************/
  567.  
  568.   /************************        Angele throttle correction         ********************/
  569.   /* Automatically increase throttle based on the angle of the copter
  570.      Original idea by Kraut Rob, first implementation HAdrian                           */
  571.  
  572.   //#define THROTTLE_ANGLE_CORRECTION 40
  573.  
  574.   /*** HEADFREE : the copter can be controled by an absolute stick orientation, whatever the yaw orientation ***/
  575.   //#define HEADFREE
  576.  
  577.  /*************************        Advanced Headfree Mode             ********************/
  578.  /* In Advanced Headfree mode when the copter is farther than ADV_HEADFREE_RANGE meters then
  579.     the  bearing between home and copter position will become the control direction
  580.     IF copter come closer than ADV_HEADFREE_RANGE meters, then the control direction freezed to the
  581.     bearing between home and copter at the point where it crosses the ADV_HEADFREE_RANGE meter distance
  582.     first implementation by HAdrian, mods by EOSBandi
  583.  */
  584.  
  585.    //#define ADVANCED_HEADFREE                                  //Advanced headfree mode is enabled when this is uncommented
  586.    //#define ADV_HEADFREE_RANGE 15                              //Range where advanced headfree mode activated
  587.  
  588.  
  589.   /************************        continuous gyro calibration        ********************/
  590.   /* Gyrocalibration will be repeated if copter is moving during calibration. */
  591.     //#define GYROCALIBRATIONFAILSAFE
  592.  
  593.   /************************        AP FlightMode        **********************************/
  594.   /*** FUNCTIONALITY TEMPORARY REMOVED ***/
  595.     /* Temporarily Disables GPS_HOLD_MODE to be able to make it possible to adjust the Hold-position when moving the sticks.*/
  596.     //#define AP_MODE 40  // Create a deadspan for GPS.
  597.        
  598.   /************************   Assisted AcroTrainer    ************************************/
  599.     /* Train Acro with auto recovery. Value set the point where ANGLE_MODE takes over.
  600.        Remember to activate ANGLE_MODE first!...
  601.        A Value on 200 will give a very distinct transfer */
  602.     //#define ACROTRAINER_MODE 200   // http://www.multiwii.com/forum/viewtopic.php?f=16&t=1944#p17437
  603.  
  604.  
  605.   /********                          Failsafe settings                 ********************/
  606.     /* Failsafe check pulses on four main control channels CH1-CH4. If the pulse is missing or bellow 985us (on any of these four channels)
  607.        the failsafe procedure is initiated. After FAILSAFE_DELAY time from failsafe detection, the level mode is on (if ACC is avaliable),
  608.        PITCH, ROLL and YAW is centered and THROTTLE is set to FAILSAFE_THROTTLE value. You must set this value to descending about 1m/s or so
  609.        for best results. This value is depended from your configuration, AUW and some other params.  Next, after FAILSAFE_OFF_DELAY the copter is disarmed,
  610.        and motors is stopped. If RC pulse coming back before reached FAILSAFE_OFF_DELAY time, after the small quard time the RC control is returned to normal. */
  611.     //#define FAILSAFE                                // uncomment  to activate the failsafe function
  612.     //#define FAILSAFE_DELAY     10                     // Guard time for failsafe activation after signal lost. 1 step = 0.1sec - 1sec in example
  613.     //#define FAILSAFE_OFF_DELAY 200                    // Time for Landing before motors stop in 0.1sec. 1 step = 0.1sec - 20sec in example
  614.     //#define FAILSAFE_THROTTLE  (MINTHROTTLE + 200)    // (*) Throttle level used for landing - may be relative to MINTHROTTLE - as in this case
  615.     #define FAILSAFE_DELAY     20
  616.     #define FAILSAFE_OFF_DELAY 0
  617.     #define FAILSAFE_THROTTLE  900
  618.    
  619.     #define FAILSAFE_DETECT_TRESHOLD  985
  620.  
  621.  
  622.   /*****************                DFRobot LED RING    *********************************/
  623.     /* I2C DFRobot LED RING communication */
  624.     //#define LED_RING
  625.  
  626.   /********************************    LED FLASHER    ***********************************/
  627.     //#define LED_FLASHER
  628.     //#define LED_FLASHER_DDR DDRB
  629.     //#define LED_FLASHER_PORT PORTB
  630.     //#define LED_FLASHER_BIT PORTB4
  631.     //#define LED_FLASHER_INVERT
  632.     //#define LED_FLASHER_SEQUENCE        0b00000000      // leds OFF
  633.     //#define LED_FLASHER_SEQUENCE_ARMED  0b00000101      // create double flashes
  634.     //#define LED_FLASHER_SEQUENCE_MAX    0b11111111      // full illumination
  635.     //#define LED_FLASHER_SEQUENCE_LOW    0b00000000      // no illumination
  636.  
  637.  
  638.   /*******************************    Landing lights    *********************************/
  639.   /* Landing lights
  640.      Use an output pin to control landing lights.
  641.      They can be switched automatically when used in conjunction
  642.      with altitude data from a sonar unit. */
  643.     //#define LANDING_LIGHTS_DDR DDRC
  644.     //#define LANDING_LIGHTS_PORT PORTC
  645.     //#define LANDING_LIGHTS_BIT PORTC0
  646.     //#define LANDING_LIGHTS_INVERT
  647.  
  648.     /* altitude above ground (in cm) as reported by sonar */
  649.     //#define LANDING_LIGHTS_AUTO_ALTITUDE 50
  650.  
  651.     /* adopt the flasher pattern for landing light LEDs */
  652.     //#define LANDING_LIGHTS_ADOPT_LED_FLASHER_PATTERN
  653.  
  654.   /*************************    INFLIGHT ACC Calibration    *****************************/
  655.     /* This will activate the ACC-Inflight calibration if unchecked */
  656.     //#define INFLIGHT_ACC_CALIBRATION
  657.  
  658.   /*******************************    OSD Switch    *************************************/
  659.     // This adds a box that can be interpreted by OSD in activation status (to switch on/off the overlay for instance)
  660.   //#define OSD_SWITCH
  661.  
  662.   /**************************************************************************************/
  663.   /***********************                  TX-related         **************************/
  664.   /**************************************************************************************/
  665.  
  666.     /* introduce a deadband around the stick center
  667.        Must be greater than zero, comment if you dont want a deadband on roll, pitch and yaw */
  668.     //#define DEADBAND 6
  669.  
  670.   /**************************************************************************************/
  671.   /***********************                  GPS                **************************/
  672.   /**************************************************************************************/
  673.  
  674.     /* ENable this for using GPS simulator (NMEA only)*/
  675.     //#define GPS_SIMULATOR
  676.  
  677.     /* GPS using a SERIAL port
  678.        if enabled, define here the Arduino Serial port number and the UART speed
  679.        note: only the RX PIN is used in case of NMEA mode, the GPS is not configured by multiwii
  680.        in NMEA mode the GPS must be configured to output GGA and RMC NMEA sentences (which is generally the default conf for most GPS devices)
  681.        at least 5Hz update rate. uncomment the first line to select the GPS serial port of the arduino */
  682.        
  683.     //#define GPS_SERIAL 2         // should be 2 for flyduino v2. It's the serial port number on arduino MEGA
  684.     //#define GPS_PROMINI_SERIAL   // Will Autosense if GPS is connected when ardu boots.
  685.  
  686.     // avoid using 115200 baud because with 16MHz arduino the 115200 baudrate have more than 2% speed error (57600 have 0.8% error)
  687.     #define GPS_BAUD   57600
  688.  
  689.    /* GPS protocol
  690.        NMEA  - Standard NMEA protocol GGA, GSA and RMC  sentences are needed
  691.        UBLOX - U-Blox binary protocol, use the ublox config file (u-blox-config.ublox.txt) from the source tree
  692.        MTK_BINARY16 and MTK_BINARY19 - MTK3329 chipset based GPS with DIYDrones binary firmware (v1.6 or v1.9)
  693.        With UBLOX and MTK_BINARY you don't have to use GPS_FILTERING in multiwii code !!! */
  694.  
  695.    
  696.     //#define NMEA
  697.     //#define UBLOX
  698.     //#define MTK_BINARY16
  699.     //#define MTK_BINARY19
  700.     //#define INIT_MTK_GPS        // initialize MTK GPS for using selected speed, 5Hz update rate and GGA & RMC sentence or binary settings
  701.  
  702.    
  703. //**!*!*!*!*!*!*!*!*!*!* I2C GPS code is NOT finished in this version, please DON'T USE !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  704.     /* I2C GPS device made with an independant arduino + GPS device
  705.        including some navigation functions
  706.        contribution from EOSBandi   http://code.google.com/p/i2c-gps-nav/
  707.        You have to use at least I2CGpsNav code r33 */
  708.     //#define I2C_GPS
  709.     // If your I2C GPS board has Sonar support enabled
  710.     //#define I2C_GPS_SONAR
  711.  
  712.     /* indicate a valid GPS fix with at least 5 satellites by flashing the LED  - Modified by MIS - Using stable LED (YELLOW on CRIUS AIO) led work as sat number indicator
  713.       - No GPS FIX -> LED blink at speed of incoming GPS frames
  714.       - Fix and sat no. bellow 5 -> LED off
  715.       - Fix and sat no. >= 5 -> LED blinks, one blink for 5 sat, two blinks for 6 sat, three for 7 ... */
  716.     #define GPS_LED_INDICATOR
  717.  
  718.    //Enables the MSP_WP command set , which is used by WinGUI for displaying an setting up navigation
  719.    //#define USE_MSP_WP                      
  720.  
  721.    // HOME position is reset at every arm, uncomment it to prohibit it (you can set home position with GyroCalibration)    
  722.    //#define DONT_RESET_HOME_AT_ARM            
  723.  
  724.     /* GPS navigation can control the heading */
  725.    
  726. // copter faces toward the navigation point, maghold must be enabled for it
  727. #define NAV_CONTROLS_HEADING       1    //(**)
  728. // true - copter comes in with tail first
  729. #define NAV_TAIL_FIRST             0    //(**)
  730. // true - when copter arrives to home position it rotates it's head to takeoff direction
  731. #define NAV_SET_TAKEOFF_HEADING    1    //(**)  
  732.    
  733.     /* Get your magnetic declination from here : http://magnetic-declination.com/
  734.        Convert the degree+minutes into decimal degree by ==> degree+minutes*(1/60)
  735. Note the sign on declination it could be negative or positive (WEST or EAST)
  736. Also note, that maqgnetic declination changes with time, so recheck your value every 3-6 months */
  737. //#define MAG_DECLINATION  4.02f   //(**)
  738. #define MAG_DECLINATION  0.76f   //(**) Stone-D: JAKARTA. CHANGE THIS FOR YOUR LOCATION.
  739.  
  740. // Adds a forward predictive filterig to compensate gps lag. Code based on Jason Short's lead filter implementation
  741. #define GPS_LEAD_FILTER               //(**)      
  742.  
  743. // add a 5 element moving average filter to GPS coordinates, helps eliminate gps noise but adds latency comment out to disable
  744. // use it with NMEA gps only
  745. //#define GPS_FILTERING                 //(**)    
  746.  
  747. // if we are within this distance to a waypoint then we consider it reached (distance is in cm)
  748. #define GPS_WP_RADIUS              100      //(**)
  749.  
  750. // Safe WP distance, do not start mission if the first wp distance is larger than this number (in meters)
  751. // Also aborts mission if the next waypoint distance is more than this number
  752. #define SAFE_WP_DISTANCE           500      //(**)
  753.  
  754. //Maximu allowable navigation altitude (in meters) automatic altitude control will not go above this height
  755. #define MAX_NAV_ALTITUDE           100     //(**)
  756.  
  757. // minimum speed when approach waypoint
  758. #define NAV_SPEED_MIN              100    // cm/sec //(**)
  759. // maximum speed to reach between waypoints
  760. #define NAV_SPEED_MAX              400    // cm/sec //(**)
  761. // Slow down to zero when reaching waypoint (same as NAV_SPEED_MIN = 0)
  762. #define NAV_SLOW_NAV               0      //(**)
  763. // Weight factor of the crosstrack error in navigation calculations (do not touch)
  764. #define CROSSTRACK_GAIN            .4     //(**)
  765. // Maximum allowable banking than navigation outputs
  766. #define NAV_BANK_MAX 3000                 //(**)
  767.  
  768. //Defines the RTH altitude. 0 means keep current alt during RTH (in meters)
  769. #define RTH_ALTITUDE               15        //(**)
  770. //Wait to reach RTH alt before start moving to home (0-no, 1-yes)
  771. #define WAIT_FOR_RTH_ALT           1         //(**)
  772.  
  773. //Navigation engine will takeover BARO mode control
  774. #define NAV_TAKEOVER_BARO          1         //(**)
  775.  
  776. //Throttle stick input will be ignored  (only in BARO)
  777. #define IGNORE_THROTTLE            1         //(**)
  778.  
  779. //If FENCE DISTANCE is larger than 0 then copter will switch to RTH when it farther from home
  780. //than the defined number in meters
  781. #define FENCE_DISTANCE      600
  782.  
  783. //This governs the descent speed during landing. 100 is equals approc 50cm/sec
  784. #define LAND_SPEED          100
  785.  
  786.  
  787.     //#define ONLY_ALLOW_ARM_WITH_GPS_3DFIX      // Only allow FC arming if GPS has a 3D fix.
  788.  
  789.   /**************************************************************************************/
  790.   /***********************        LCD/OLED - display settings       *********************/
  791.   /**************************************************************************************/
  792.  
  793.     /* http://www.multiwii.com/wiki/index.php?title=Extra_features#LCD_.2F_OLED */
  794.  
  795.     /*****************************   The type of LCD     **********************************/
  796.       /* choice of LCD attached for configuration and telemetry, see notes below */
  797.       //#define LCD_DUMMY       // No Physical LCD attached.  With this & LCD_CONF defined, TX sticks still work to set gains, by watching LED blink.  
  798.       //#define LCD_SERIAL3W    // Alex' initial variant with 3 wires, using rx-pin for transmission @9600 baud fixed
  799.       //#define LCD_TEXTSTAR    // SERIAL LCD: Cat's Whisker LCD_TEXTSTAR Module CW-LCD-02 (Which has 4 input keys for selecting menus)
  800.       //#define LCD_VT100       // SERIAL LCD: vt100 compatible terminal emulation (blueterm, putty, etc.)
  801.       //#define LCD_TTY         // SERIAL LCD: useful to tweak parameters over cable with arduino IDE 'serial monitor'
  802.       //#define LCD_ETPP        // I2C LCD: Eagle Tree Power Panel LCD, which is i2c (not serial)
  803.       //#define LCD_LCD03       // I2C LCD: LCD03, which is i2c
  804.       //#define OLED_I2C_128x64 // I2C LCD: OLED http://www.multiwii.com/forum/viewtopic.php?f=7&t=1350
  805.       //#define OLED_DIGOLE     // I2C OLED from http://www.digole.com/index.php?productID=550
  806.  
  807.     /******************************   Display settings   ***********************************/
  808.       #define LCD_SERIAL_PORT 0    // must be 0 on Pro Mini and single serial boards; Set to your choice on any Mega based board
  809.  
  810.       //#define SUPPRESS_OLED_I2C_128x64LOGO  // suppress display of OLED logo to save memory
  811.  
  812.     /* double font height for better readability. Reduces visible #lines by half.
  813.      * The lower part of each page is accessible under the name of shifted keyboard letter :
  814.      * 1 - ! , 2 - @ , 3 - # , 4 - $ , 5 - % , 6 - ^ , 7 - & , 8 - * , 9 - (
  815.      * You must add both to your lcd.telemetry.* sequences
  816.      */
  817.       //#define DISPLAY_FONT_DSIZE //currently only aplicable for OLED_I2C_128x64 and OLED_DIGOLE
  818.  
  819.     /* style of display - AUTODETECTED via LCD_ setting - only activate to override defaults */
  820.       //#define DISPLAY_2LINES
  821.       //#define DISPLAY_MULTILINE
  822.       //#define MULTILINE_PRE 2  // multiline configMenu # pref lines
  823.       //#define MULTILINE_POST 6 // multiline configMenu # post lines
  824.       //#define DISPLAY_COLUMNS 16
  825.     /********************************    Navigation     ***********************************/
  826.     /* keys to navigate the LCD menu */
  827.       #define LCD_MENU_PREV 'p'
  828.       #define LCD_MENU_NEXT 'n'
  829.       #define LCD_VALUE_UP 'u'
  830.       #define LCD_VALUE_DOWN 'd'
  831.  
  832.       #define LCD_MENU_SAVE_EXIT 's'
  833.       #define LCD_MENU_ABORT 'x'
  834.  
  835.   /**************************************************************************************/
  836.   /***********************      LCD configuration menu         **************************/
  837.   /**************************************************************************************/
  838.  
  839.     /* uncomment this line if you plan to use a LCD or OLED for tweaking parameters
  840.      * http://www.multiwii.com/wiki/index.php?title=Extra_features#Configuration_Menu */
  841.       //#define LCD_CONF
  842.  
  843.     /* to include setting the aux switches for AUX1 -> AUX4 via LCD */
  844.       //#define LCD_CONF_AUX
  845.  
  846.     /* optional exclude some functionality - uncomment to suppress unwanted aux channel configuration options */
  847.       //#define SUPPRESS_LCD_CONF_AUX2
  848.       //#define SUPPRESS_LCD_CONF_AUX34
  849.  
  850.   /**************************************************************************************/
  851.   /***********************      LCD       telemetry            **************************/
  852.   /**************************************************************************************/
  853.  
  854.     /* to monitor system values (battery level, loop time etc. with LCD
  855.      * http://www.multiwii.com/wiki/index.php?title=LCD_Telemetry */
  856.  
  857.     /********************************    Activation     ***********************************/
  858.     //#define LCD_TELEMETRY
  859.  
  860.     /* to enable automatic hopping between a choice of telemetry pages uncomment this. */
  861.     //#define LCD_TELEMETRY_AUTO "123452679" // pages 1 to 9 in ascending order
  862.     //#define LCD_TELEMETRY_AUTO  "212232425262729" // strong emphasis on page 2
  863.  
  864.     /* manual stepping sequence; first page of the sequence gets loaded at startup to allow non-interactive display */
  865.     //#define LCD_TELEMETRY_STEP "0123456789" // should contain a 0 to allow switching off.
  866.  
  867.     /* optional exclude some functionality - uncomment to suppress some unwanted telemetry pages */
  868.     //#define SUPPRESS_TELEMETRY_PAGE_1
  869.     //#define SUPPRESS_TELEMETRY_PAGE_2
  870.     //#define SUPPRESS_TELEMETRY_PAGE_3
  871.     //#define SUPPRESS_TELEMETRY_PAGE_4
  872.     //#define SUPPRESS_TELEMETRY_PAGE_5
  873.     //#define SUPPRESS_TELEMETRY_PAGE_6
  874.     //#define SUPPRESS_TELEMETRY_PAGE_7
  875.     //#define SUPPRESS_TELEMETRY_PAGE_8
  876.     //#define SUPPRESS_TELEMETRY_PAGE_9
  877.     //#define SUPPRESS_TELEMETRY_PAGE_R
  878.  
  879.     /* optional override default items for some telemetry pages - for complete list of usable functions see LCD.h */
  880.     //#define LCD_TELEMETRY_PAGE1 { output_V, output_mAh, }
  881.     //#define LCD_TELEMETRY_PAGE2 { output_gyroX, output_gyroY, output_accZ, }
  882.     //#define LCD_TELEMETRY_PAGE9 { output_fails, output_annex, output_debug0, output_debug3, }
  883.  
  884.   /********************************************************************/
  885.   /****                             RSSI                           ****/
  886.   /********************************************************************/
  887.     //#define RX_RSSI
  888.     //#define RX_RSSI_PIN A3
  889.     //#define RX_RSSI_CHAN 8   //RSSI injection on selected channel (for PPM, Olrs, SBUS, etc.) (Starts at 0)
  890.  
  891.   /********************************************************************/
  892.   /****                             Buzzer                         ****/
  893.   /********************************************************************/
  894.     //#define BUZZER
  895.     //#define RCOPTIONSBEEP         // uncomment this if you want the buzzer to beep at any rcOptions change on channel Aux1 to Aux4
  896.     //#define ARMEDTIMEWARNING 330  // (*) Trigger an alarm after a certain time of being armed [s] to save you lipo (if your TX does not have a countdown)
  897.     //#define PILOTLAMP             //Uncomment if you are using a X-Arcraft Pilot Lamp
  898.  
  899.   /********************************************************************/
  900.   /****           battery voltage monitoring                       ****/
  901.   /********************************************************************/
  902.     /* for V BAT monitoring
  903.        after the resistor divisor we should get [0V;5V]->[0;1023] on analog V_BATPIN
  904.        with R1=33k and R2=51k
  905.        vbat = [0;1023]*16/VBATSCALE
  906.        must be associated with #define BUZZER ! */
  907.     //#define VBAT              // uncomment this line to activate the vbat code
  908.     #define VBATSCALE       131 // (*) (**) change this value if readed Battery voltage is different than real voltage
  909.     #define VBATNOMINAL     126 // 12,6V full battery nominal voltage - only used for lcd.telemetry
  910.     #define VBATLEVEL_WARN1 107 // (*) (**) 10,7V
  911.     #define VBATLEVEL_WARN2  99 // (*) (**) 9.9V
  912.     #define VBATLEVEL_CRIT   93 // (*) (**) 9.3V - critical condition: if vbat ever goes below this value, permanent alarm is triggered
  913.     #define NO_VBAT          16 // Avoid beeping without any battery
  914.  
  915.  
  916.   /********************************************************************/
  917.   /****           powermeter (battery capacity monitoring)         ****/
  918.   /********************************************************************/
  919.  
  920.     /* enable monitoring of the power consumption from battery (think of mAh)
  921.        allows to set alarm value in GUI or via LCD
  922.       Full description and howto here http://www.multiwii.com/wiki/index.php?title=Powermeter
  923.        Two options:
  924.        1 - hard: - (uses hardware sensor, after configuration gives very good results)
  925.        2 - soft: - (good results +-5% for plush and mystery ESCs @ 2S and 3S, not good with SuperSimple ESC)    */
  926.     //#define POWERMETER_SOFT
  927.     //#define POWERMETER_HARD
  928.     #define PSENSORNULL 510 /* (*) hard only: set to analogRead() value for zero current; for I=0A my sensor
  929.                                    gives 1/2 Vss; that is approx 2.49Volt; */
  930.     #define PINT2mA 132     /* (*) hard: one integer step on arduino analog translates to mA (example 4.9 / 37 * 1000) ;
  931.                                    soft: use fictional value, start with 100.
  932.                                    for hard and soft: larger PINT2mA will get you larger value for power (mAh equivalent) */
  933.     //#define WATTS // compute and display the actual watts (=Volt*Ampere) consumed - requires both POWERMETER_HARD and VBAT
  934.  
  935.   /********************************************************************/
  936.   /****           altitude hold                                    ****/
  937.   /********************************************************************/
  938.  
  939.     /* defines the neutral zone of throttle stick during altitude hold, default setting is
  940.        +/-50 uncommend and change the value below if you want to change it. */
  941.     #define ALT_HOLD_THROTTLE_NEUTRAL_ZONE    50
  942.     //#define ALT_HOLD_THROTTLE_MIDPOINT        1500  // in us    - if uncommented, this value is used in ALT_HOLD for throttle stick middle point instead of initialThrottleHold parameter.
  943.  
  944.  
  945.     /* uncomment to disable the altitude hold feature.
  946.      * This is useful if all of the following apply
  947.      * + you have a baro
  948.      * + want altitude readout and/or variometer
  949.      * + do not use altitude hold feature
  950.      * + want to save memory space */
  951.     //#define SUPPRESS_BARO_ALTHOLD
  952.  
  953.   /********************************************************************/
  954.   /****           altitude variometer                              ****/
  955.   /********************************************************************/
  956.  
  957.     /* enable to get audio feedback upon rising/falling copter/plane.
  958.      * Requires a working baro.
  959.      * For now, Output gets sent to an enabled vt100 terminal program over the serial line.
  960.      * choice of two methods (enable either one or both)
  961.      * method 1 : use short term movement from baro ( bigger code size)
  962.      * method 2 : use long term observation of altitude from baro (smaller code size)
  963.      */
  964.     //#define VARIOMETER 12            // possible values: 12 = methods 1 & 2 ; 1 = method 1 ; 2 = method 2
  965.     //#define SUPPRESS_VARIOMETER_UP   // if no signaling for up movement is desired
  966.     //#define SUPPRESS_VARIOMETER_DOWN // if no signaling for down movement is desired
  967.     //#define VARIOMETER_SINGLE_TONE   // use only one tone (BEL); neccessary for non-patched vt100 terminals
  968.  
  969.   /********************************************************************/
  970.   /****           board naming                                     ****/
  971.   /********************************************************************/
  972.  
  973.     /*
  974.      * this name is displayed together with the MultiWii version number
  975.      * upon powerup on the LCD.
  976.      * If you are without a DISPLAYD then You may enable LCD_TTY and
  977.      * use arduino IDE's serial monitor to view the info.
  978.      *
  979.      * You must preserve the format of this string!
  980.      * It must be 16 characters total,
  981.      * The last 4 characters will be overwritten with the version number.
  982.      */
  983.     #define BOARD_NAME "MultiWii   V-.--"
  984.     //                  123456789.123456
  985.  
  986.   /*************      Support multiple configuration profiles in EEPROM     ************/
  987.     //#define MULTIPLE_CONFIGURATION_PROFILES
  988.  
  989.   /*************      do no reset constants when change of flashed program is detected ***********/
  990.     #define NO_FLASH_CHECK
  991.  
  992. /*************************************************************************************************/
  993. /*****************                                                                 ***************/
  994. /****************  SECTION  7 - TUNING & DEVELOPER                                  **************/
  995. /*****************                                                                 ***************/
  996. /*************************************************************************************************/
  997.  
  998.   /**************************************************************************************/
  999.   /********   special ESC with extended range [0-2000] microseconds  ********************/
  1000.   /**************************************************************************************/
  1001.     //#define EXT_MOTOR_RANGE // using this with wii-esc requires to change MINCOMMAND to 1008 for promini and mega
  1002.  
  1003.   /**************************************************************************************/
  1004.   /********  brushed ESC ****************************************************************/
  1005.   /**************************************************************************************/
  1006.     // for 328p proc
  1007.     //#define EXT_MOTOR_32KHZ
  1008.     //#define EXT_MOTOR_4KHZ
  1009.     //#define EXT_MOTOR_1KHZ
  1010.  
  1011.     // for 32u4 proc
  1012.     //#define EXT_MOTOR_64KHZ
  1013.     //#define EXT_MOTOR_32KHZ
  1014.     //#define EXT_MOTOR_16KHZ
  1015.     //#define EXT_MOTOR_8KHZ
  1016.  
  1017.   /**************************************************************************************/
  1018.   /***********************     motor, servo and other presets     ***********************/
  1019.   /**************************************************************************************/
  1020.     /* motors will not spin when the throttle command is in low position
  1021.        this is an alternative method to stop immediately the motors */
  1022.     #define MOTOR_STOP
  1023.  
  1024.     /* some radios have not a neutral point centered on 1500. can be changed here */
  1025.     #define MIDRC 1500
  1026.  
  1027.   /***********************         Servo Refreshrates            ***********************/
  1028.     /* Default 50Hz Servo refresh rate*/
  1029.     #define SERVO_RFR_50HZ
  1030.  
  1031.     /* up to 160Hz servo refreshrate .. works with the most analog servos*/
  1032.     //#define SERVO_RFR_160HZ
  1033.  
  1034.     /* up to 300Hz refreshrate it is as fast as possible (100-300Hz depending on the cound of used servos and the servos state).
  1035.        for use with digital servos
  1036.        dont use it with analog servos! thay may get damage. (some will work but be careful) */
  1037.     //#define SERVO_RFR_300HZ
  1038.    
  1039.   /***********************             HW PWM Servos             ***********************/
  1040.     /* HW PWM Servo outputs for Arduino Mega.. moves:
  1041.       Pitch   = pin 44
  1042.       Roll    = pin 45
  1043.       CamTrig = pin 46
  1044.       SERVO4  = pin 11 (aileron left for fixed wing or TRI YAW SERVO)
  1045.       SERVO5  = pin 12 (aileron right for fixed wing)
  1046.       SERVO6  = pin 6   (rudder for fixed wing)
  1047.       SERVO7  = pin 7   (elevator for fixed wing)
  1048.       SERVO8  = pin 8   (motor for fixed wing)       */
  1049.  
  1050.     #define MEGA_HW_PWM_SERVOS
  1051.  
  1052.     /* HW PWM Servo outputs for 32u4 NanoWii, MicroWii etc. - works with either the variable SERVO_RFR_RATE or
  1053.      * one of the 3 fixed servo.refresh.rates *
  1054.      * Tested only for heli_120, i.e. 1 motor + 4 servos, moves..
  1055.      * motor[0] = motor       = pin  6
  1056.      * servo[3] = nick  servo = pin 11
  1057.      * servo[4] = left  servo = pin 10
  1058.      * servo[5] = yaw   servo = pin  5
  1059.      * servo[6]  = right servo= pin  9
  1060.      */
  1061.     //#define A32U4_4_HW_PWM_SERVOS
  1062.  
  1063.     #define SERVO_RFR_RATE  50    // In Hz, you can set it from 20 to 400Hz, used only in HW PWM mode for mega and 32u4
  1064.     //#define SERVO_PIN5_RFR_RATE  200    // separate yaw pwm rate.
  1065.                                           // In Hz, you can set it from 20 to 400Hz, used only in HW PWM mode for 32u4
  1066.  
  1067.  
  1068.   /********************************************************************/
  1069.   /****           Memory savings                                   ****/
  1070.   /********************************************************************/
  1071.  
  1072.     /* options to counter the general shortage of both flash and ram memory, like with leonardo m32u4 and others */
  1073.  
  1074.     /**** suppress handling of serial commands.***
  1075.      * This does _not_ affect handling of RXserial, Spektrum or GPS. Those will not be affected and still work the same.
  1076.      * Enable either one or both of the following options  */
  1077.  
  1078.       /* Remove handling of all commands of the New MultiWii Serial Protocol.
  1079.        * This will disable use of the GUI, winGUI, android apps and any other program that makes use of the MSP.
  1080.        * You must find another way (like LCD_CONF) to tune the parameters or live with the defaults.
  1081.        * If you run a LCD/OLED via i2c or serial/Bluetooth, this is safe to use */
  1082.       //#define SUPPRESS_ALL_SERIAL_MSP // saves approx 2700 bytes
  1083.  
  1084.       /* Remove handling of other serial commands.
  1085.        * This includes navigating via serial the lcd.configuration menu, lcd.telemetry and permanent.log .
  1086.        * Navigating via stick inputs on tx is not affected and will work the same.  */
  1087.       //#define SUPPRESS_OTHER_SERIAL_COMMANDS // saves  approx 0 to 100 bytes, depending on features enabled
  1088.  
  1089.     /**** suppress keeping the defaults for initial setup and reset in the code.
  1090.      * This requires a manual initial setup of the PIDs etc. or load and write from defaults.mwi;
  1091.      * reset in GUI will not work on PIDs
  1092.      */
  1093.     //#define SUPPRESS_DEFAULTS_FROM_GUI
  1094.    
  1095.     //#define DISABLE_SETTINGS_TAB  // Saves ~400bytes on ProMini
  1096.  
  1097.   /********************************************************************/
  1098.   /****           diagnostics                                      ****/
  1099.   /********************************************************************/
  1100.  
  1101.     /* to log values like max loop time and others to come
  1102.        logging values are visible via LCD config
  1103.        set to 1, enable 'R' option to reset values, max current, max altitude
  1104.        set to 2, adds min/max cycleTimes
  1105.        set to 3, adds additional powerconsumption on a per motor basis (this uses the big array and is a memory hog, if POWERMETER <> PM_SOFT) */
  1106.     //#define LOG_VALUES 1
  1107.  
  1108.     /* Permanent logging to eeprom - survives (most) upgrades and parameter resets.
  1109.      * used to track number of flights etc. over lifetime of controller board.
  1110.      * Writes to end of eeprom - should not conflict with stored parameters yet.
  1111.      * Logged values: accumulated lifetime, #powercycle/reset/initialize events, #arm events, #disarm events, last armedTime,
  1112.      *                #failsafe@disarm, #i2c_errs@disarm
  1113.      * Enable one or more options to show the log
  1114.      */
  1115.     //#define LOG_PERMANENT
  1116.     //#define LOG_PERMANENT_SHOW_AT_STARTUP // enable to display log at startup
  1117.     //#define LOG_PERMANENT_SHOW_AT_L // enable to display log when receiving 'L'
  1118.     //#define LOG_PERMANENT_SHOW_AFTER_CONFIG // enable to display log after exiting LCD config menu
  1119.     //#define LOG_PERMANENT_SERVICE_LIFETIME 36000 // in seconds; service alert at startup after 10 hours of armed time
  1120.  
  1121.     /* to add debugging code
  1122.        not needed and not recommended for normal operation
  1123.        will add extra code that may slow down the main loop or make copter non-flyable */
  1124.     //#define DEBUG
  1125.     //#define DEBUG_FREE // will add 'F' command to show free memory
  1126.  
  1127.     /* Use this to trigger LCD configuration without a TX - only for debugging - do NOT fly with this activated */
  1128.     //#define LCD_CONF_DEBUG
  1129.  
  1130.     /* Use this to trigger telemetry without a TX - only for debugging - do NOT fly with this activated */
  1131.     //#define LCD_TELEMETRY_DEBUG    //This form rolls between all screens, LCD_TELEMETRY_AUTO must also be defined.
  1132.     //#define LCD_TELEMETRY_DEBUG 6  //This form stays on the screen specified.
  1133.  
  1134.     /* Enable string transmissions from copter to GUI */
  1135.     //#define DEBUGMSG
  1136.  
  1137.  
  1138.   /********************************************************************/
  1139.   /****           ESCs calibration                                 ****/
  1140.   /********************************************************************/
  1141.  
  1142.     /* to calibrate all ESCs connected to MWii at the same time (useful to avoid unplugging/re-plugging each ESC)
  1143.        Warning: this creates a special version of MultiWii Code
  1144.        You cannot fly with this special version. It is only to be used for calibrating ESCs
  1145.        Read How To at http://code.google.com/p/multiwii/wiki/ESCsCalibration */
  1146.     #define ESC_CALIB_LOW  MINCOMMAND
  1147.     //#define ESC_CALIB_HIGH 2000
  1148.     #define ESC_CALIB_HIGH 1950
  1149.     //#define ESC_CALIB_CANNOT_FLY  // uncomment to activate
  1150.  
  1151.   /****           internal frequencies                             ****/
  1152.     /* frequenies for rare cyclic actions in the main loop, depend on cycle time
  1153.        time base is main loop cycle time - a value of 6 means to trigger the action every 6th run through the main loop
  1154.        example: with cycle time of approx 3ms, do action every 6*3ms=18ms
  1155.        value must be [1; 65535] */
  1156.     #define LCD_TELEMETRY_FREQ 23       // to send telemetry data over serial 23 <=> 60ms <=> 16Hz (only sending interlaced, so 8Hz update rate)
  1157.     #define LCD_TELEMETRY_AUTO_FREQ  967// to step to next telemetry page 967 <=> 3s
  1158.     #define PSENSOR_SMOOTH 16           // len of averaging vector for smoothing the PSENSOR readings; should be power of 2; set to 1 to disable
  1159.     #define VBAT_SMOOTH 16              // len of averaging vector for smoothing the VBAT readings; should be power of 2; set to 1 to disable
  1160.     #define RSSI_SMOOTH 16              // len of averaging vector for smoothing the RSSI readings; should be power of 2; set to 1 to disable
  1161.  
  1162.   /********************************************************************/
  1163.   /****           Dynamic Motor/Prop Balancing                     ****/
  1164.   /********************************************************************/
  1165.   /*                   !!! No Fly Mode !!!                            */
  1166.        
  1167.     //#define DYNBALANCE   // (**) Dynamic balancing controlled from Gui
  1168.  
  1169.   /********************************************************************/
  1170.   /****           Regression testing                               ****/
  1171.   /********************************************************************/
  1172.  
  1173.     /* for development only:
  1174.        to allow for easier and reproducable config sets for test compiling, different sets of config parameters are kept
  1175.        together. This is meant to help detecting compile time errors for various features in a coordinated way.
  1176.        It is not meant to produce your flying firmware
  1177.        To use:
  1178.        - do not set any options in config.h,
  1179.        - enable with #define COPTERTEST 1, then compile
  1180.        - if possible, check for the size
  1181.        - repeat with other values of 2, 3, 4 etc.
  1182.         */
  1183.     //#define COPTERTEST 1
  1184.  
  1185. /*************************************************************************************************/
  1186. /*****************                                                                 ***************/
  1187. /****************  SECTION  8 - DEPRECATED                                                 *******/
  1188. /*****************                                                                 ***************/
  1189. /*************************************************************************************************/
  1190.  
  1191.   /* these features will be removed in the unforseeable future. Do not build new products or
  1192.    * functionality based on such features. The default for all such features is OFF.
  1193.    */
  1194.  
  1195.   /**************************    WMP power pin     *******************************/
  1196.   //#define D12_POWER      // Use D12 on PROMINI to power sensors. Will disable servo[4] on D12
  1197.   /* disable use of the POWER PIN (allready done if the option RCAUXPIN12 is selected) */
  1198.   #define DISABLE_POWER_PIN
  1199.  
  1200.  
  1201. /*************************************************************************************************/
  1202. /****           END OF CONFIGURABLE PARAMETERS                                                ****/
  1203. /*************************************************************************************************/
  1204.  
  1205. #endif /* CONFIG_H_ */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement