Page 330 - 2
P. 330

#include "config.h"
            #include "def.h"
            #include "types.h"
            #include "MultiWii.h"
            #include "Alarms.h"
            #include "EEPROM.h"
            #include "IMU.h"
            #include "LCD.h"
            #include "Output.h"
            #include "RX.h"
            #include "Sensors.h"
            #include "Serial.h"
            #include "GPS.h"
            #include "Protocol.h"


            #include <avr/pgmspace.h>


            /*********** RC alias *****************/


            const char pidnames[] PROGMEM =
              "ROLL;"
              "PITCH;"
              "YAW;"
              "ALT;"
              "Pos;"
              "PosR;"
              "NavR;"
              "LEVEL;"
              "MAG;"
              "VEL;"
            ;


            const char boxnames[] PROGMEM = // names for dynamic generation of config GUI
              "ARM;"
              #if ACC
                "ANGLE;"
                "HORIZON;"
              #endif
              #if BARO && (!defined(SUPPRESS_BARO_ALTHOLD))
                "BARO;"
              #endif
              #ifdef VARIOMETER
                "VARIO;"
              #endif
              "MAG;"


                                                         - 330 -
   325   326   327   328   329   330   331   332   333   334   335