Subversion Repositories FlightCtrl

Rev

Rev 700 | Go to most recent revision | Blame | Last modification | View Log | RSS feed

/*#######################################################################################
Flight Control
#######################################################################################*/

// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// + Copyright (c) 04.2007 Holger Buss
// + Nur für den privaten Gebrauch
// + www.MikroKopter.com
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// + Es gilt für das gesamte Projekt (Hardware, Software, Binärfiles, Sourcecode und Dokumentation),
// + dass eine Nutzung (auch auszugsweise) nur für den privaten (nicht-kommerziellen) Gebrauch zulässig ist.
// + Sollten direkte oder indirekte kommerzielle Absichten verfolgt werden, ist mit uns (info@mikrokopter.de) Kontakt
// + bzgl. der Nutzungsbedingungen aufzunehmen.
// + Eine kommerzielle Nutzung ist z.B.Verkauf von MikroKoptern, Bestückung und Verkauf von Platinen oder Bausätzen,
// + Verkauf von Luftbildaufnahmen, usw.
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// + Werden Teile des Quellcodes (mit oder ohne Modifikation) weiterverwendet oder veröffentlicht,
// + unterliegen sie auch diesen Nutzungsbedingungen und diese Nutzungsbedingungen incl. Copyright müssen dann beiliegen
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// + Sollte die Software (auch auszugesweise) oder sonstige Informationen des MikroKopter-Projekts
// + auf anderen Webseiten oder sonstigen Medien veröffentlicht werden, muss unsere Webseite "http://www.mikrokopter.de"
// + eindeutig als Ursprung verlinkt werden
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// + Keine Gewähr auf Fehlerfreiheit, Vollständigkeit oder Funktion
// + Benutzung auf eigene Gefahr
// + Wir übernehmen keinerlei Haftung für direkte oder indirekte Personen- oder Sachschäden
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// + Die Portierung der Software (oder Teile davon) auf andere Systeme (ausser der Hardware von www.mikrokopter.de) ist nur
// + mit unserer Zustimmung zulässig
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// + Die Funktion printf_P() unterliegt ihrer eigenen Lizenz und ist hiervon nicht betroffen
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// + Redistributions of source code (with or without modifications) must retain the above copyright notice,
// + this list of conditions and the following disclaimer.
// +   * Neither the name of the copyright holders nor the names of contributors may be used to endorse or promote products derived
// +     from this software without specific prior written permission.
// +   * The use of this project (hardware, software, binary files, sources and documentation) is only permittet
// +     for non-commercial use (directly or indirectly)
// +     Commercial use (for excample: selling of MikroKopters, selling of PCBs, assembly, ...) is only permitted
// +     with our written permission
// +   * If sources or documentations are redistributet on other webpages, out webpage (http://www.MikroKopter.de) must be
// +     clearly linked as origin
// +   * porting to systems other than hardware from www.mikrokopter.de is not allowed
// +  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// +  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// +  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// +  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// +  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// +  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// +  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// +  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN// +  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// +  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// +  POSSIBILITY OF SUCH DAMAGE.
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#include <stdlib.h>
#include <avr/io.h>

#include "main.h"
#include "eeprom.h"
#include "timer0.h"
#include "_Settings.h"
#include "analog.h"
#include "fc.h"
#include "gps.h"
#include "uart.h"
#include "rc.h"
#include "twimaster.h"
#include "mm3.h"

unsigned char h,m,s;
volatile unsigned int I2CTimeout = 100;
volatile int ReadingPitch, ReadingRoll, ReadingYaw;
volatile int AdNeutralPitch = 0,AdNeutralRoll = 0,AdNeutralYaw = 0, StartNeutralRoll = 0, StartNeutralPitch = 0;
volatile int Mean_AccPitch, Mean_AccRoll, Mean_AccTop, NeutralAccX=0, NeutralAccY=0;
volatile float NeutralAccZ = 0;
volatile long IntegralPitch = 0,IntegralPitch2 = 0;
volatile long IntegralRoll = 0,IntegralRoll2 = 0;
volatile long IntegralAccPitch = 0,IntegralAccRoll = 0,IntegralAccZ = 0;
volatile long Integral_Yaw = 0;
volatile long Reading_IntegralPitch = 0,Reading_IntegralPitch2 = 0;
volatile long Reading_IntegralRoll = 0,Reading_IntegralRoll2 = 0;
volatile long Reading_Integral_Yaw = 0,Reading_Integral_Yaw2 = 0;
volatile long MeanIntegralPitch, MeanIntegralRoll, MeanIntegralPitch2, MeanIntegralRoll2;
volatile long Reading_Integral_Top = 0;
volatile int  CompassHeading = 0;
volatile int  CompassCourse = 0;
volatile int  CompassOffCourse = 0;
unsigned char MAX_GAS,MIN_GAS;
unsigned char EmergencyLanding = 0;
unsigned char HightControlActive = 0;
long TurnOver180Pitch = 250000L, TurnOver180Roll = 250000L;

float GyroFactor;
float IntegralFactor;
volatile int  DiffPitch,DiffRoll;
int  Poti1 = 0, Poti2 = 0, Poti3 = 0, Poti4 = 0;
volatile unsigned char Motor_Front, Motor_Rear, Motor_Right, Motor_Left, Count;
unsigned char MotorValue[5];
int16_t StickPitch = 0, StickRoll = 0, StickYaw = 0, StickGas = 0;
char MotorsOn = 0;
int ReadingHight = 0;
int SetPointHight = 0;
int AttitudeCorrectionRoll = 0, AttitudeCorrectionPitch = 0;
float Ki =  FAKTOR_I;
unsigned char Looping_Pitch = 0, Looping_Roll = 0;
unsigned char Looping_Left = 0, Looping_Right = 0, Looping_Down = 0, Looping_Top = 0;

unsigned char Parameter_Luftdruck_D  = 48;      // Wert : 0-250
unsigned char Parameter_MaxHoehe     = 251;     // Wert : 0-250
unsigned char Parameter_Hoehe_P      = 16;      // Wert : 0-32
unsigned char Parameter_Hoehe_ACC_Wirkung = 58; // Wert : 0-250
unsigned char Parameter_CompassYawEffect = 64;  // Wert : 0-250
unsigned char Parameter_Gyro_P = 150;           // Wert : 10-250
unsigned char Parameter_Gyro_I = 150;           // Wert : 0-250
unsigned char Parameter_Gier_P = 2;             // Wert : 1-20
unsigned char Parameter_I_Factor = 10;          // Wert : 1-20
unsigned char Parameter_UserParam1 = 0;
unsigned char Parameter_UserParam2 = 0;
unsigned char Parameter_UserParam3 = 0;
unsigned char Parameter_UserParam4 = 0;
unsigned char Parameter_UserParam5 = 0;
unsigned char Parameter_UserParam6 = 0;
unsigned char Parameter_UserParam7 = 0;
unsigned char Parameter_UserParam8 = 0;
unsigned char Parameter_ServoPitchControl = 100;
unsigned char Parameter_LoopGasLimit = 70;
unsigned char Parameter_AchsKopplung1 = 0;
unsigned char Parameter_AchsGegenKopplung1 = 0;
unsigned char Parameter_DynamicStability = 100;

signed int ExternStickPitch = 0, ExternStickRoll = 0,ExternStickYaw = 0, ExternHightValue = -20;
int MaxStickPitch = 0, MaxStickRoll = 0;

void Piep(unsigned char Anzahl)
{
 while(Anzahl--)
 {
  if(MotorsOn) return; //auf keinen Fall im Flug!
  BeepTime = 100;
  Delay_ms(250);
 }
}

//############################################################################
//  Nullwerte ermitteln
void SetNeutral(void)
//############################################################################
{
        NeutralAccX = 0;
        NeutralAccY = 0;
        NeutralAccZ = 0;
    AdNeutralPitch = 0;
        AdNeutralRoll = 0;
        AdNeutralYaw = 0;
    Parameter_AchsKopplung1 = 0;
    Parameter_AchsGegenKopplung1 = 0;
    CalibMean();
    Delay_ms_Mess(100);
        CalibMean();
    if((ParamSet.GlobalConfig & CFG_HEIGHT_CONTROL))  // Höhenregelung aktiviert?
     {
      if((ReadingAirPressure > 950) || (ReadingAirPressure < 750)) SearchAirPressureOffset();
     }

     AdNeutralPitch= AdValueGyrPitch;
         AdNeutralRoll= AdValueGyrRoll;
         AdNeutralYaw= AdValueGyrYaw;
     StartNeutralRoll = AdNeutralRoll;
     StartNeutralPitch = AdNeutralPitch;
    if(GetParamByte(PID_ACC_PITCH) > 4)
    {
      NeutralAccY = abs(Mean_AccRoll) / ACC_AMPLIFY;
          NeutralAccX = abs(Mean_AccPitch) / ACC_AMPLIFY;
          NeutralAccZ = Current_AccZ;
    }
    else
    { // why not GetParamWord()?
      NeutralAccX = (int)GetParamByte(PID_ACC_PITCH) * 256 + (int)GetParamByte(PID_ACC_PITCH+1);
          NeutralAccY = (int)GetParamByte(PID_ACC_ROLL) * 256 + (int)GetParamByte(PID_ACC_ROLL+1);
          NeutralAccZ = (int)GetParamByte(PID_ACC_Z) * 256 + (int)GetParamByte(PID_ACC_Z+1);
    }

        Reading_IntegralPitch = 0;
    Reading_IntegralPitch2 = 0;
    Reading_IntegralRoll = 0;
    Reading_IntegralRoll2 = 0;
    Reading_Integral_Yaw = 0;
    ReadingPitch = 0;
    ReadingRoll = 0;
    ReadingYaw = 0;
    StartAirPressure = AirPressure;
    HoeheD = 0;
    Reading_Integral_Top = 0;
    CompassCourse = CompassHeading;
    GPS_Neutral();
    BeepTime = 50;
        TurnOver180Pitch = (long) ParamSet.AngleTurnOverPitch * 2500L;
        TurnOver180Roll = (long) ParamSet.AngleTurnOverRoll * 2500L;
    ExternHightValue = 0;
}

//############################################################################
// Bearbeitet die Messwerte
void Mean(void)
//############################################################################
{
    static int32_t tmpl,tmpl2;
    ReadingYaw = (int16_t) AdNeutralYaw - AdValueGyrYaw;
    ReadingRoll = (int16_t) AdValueGyrRoll - AdNeutralRoll;
    ReadingPitch = (int16_t) AdValueGyrPitch - AdNeutralPitch;

//DebugOut.Analog[26] = ReadingPitch;
DebugOut.Analog[28] = ReadingRoll;

// Beschleunigungssensor  ++++++++++++++++++++++++++++++++++++++++++++++++
        Mean_AccPitch = ((long)Mean_AccPitch * 1 + ((ACC_AMPLIFY * (long)AdValueAccPitch))) / 2L;
        Mean_AccRoll = ((long)Mean_AccRoll * 1 + ((ACC_AMPLIFY * (long)AdValueAccRoll))) / 2L;
        Mean_AccTop = ((long)Mean_AccTop * 1 + ((long)AdValueAccTop)) / 2L;
    IntegralAccPitch += ACC_AMPLIFY * AdValueAccPitch;
    IntegralAccRoll += ACC_AMPLIFY * AdValueAccRoll;
    IntegralAccZ    += Current_AccZ - NeutralAccZ;
// Yaw  ++++++++++++++++++++++++++++++++++++++++++++++++
            Reading_Integral_Yaw +=  ReadingYaw;
            Reading_Integral_Yaw2 += ReadingYaw;
// Kopplungsanteil  +++++++++++++++++++++++++++++++++++++
      if(!Looping_Pitch && !Looping_Roll && (ParamSet.GlobalConfig & CFG_AXIS_COUPLING_ACTIVE))
         {
            tmpl = Reading_IntegralPitch / 4096L;
            tmpl *= ReadingYaw;
            tmpl *= Parameter_AchsKopplung1;  //125
            tmpl /= 2048L;
            tmpl2 = Reading_IntegralRoll / 4096L;
            tmpl2 *= ReadingYaw;
            tmpl2 *= Parameter_AchsKopplung1;
            tmpl2 /= 2048L;
         }
      else  tmpl = tmpl2 = 0;
// Roll  ++++++++++++++++++++++++++++++++++++++++++++++++
            ReadingRoll += tmpl;
            ReadingRoll += (tmpl2*Parameter_AchsGegenKopplung1)/512L; //109
            Reading_IntegralRoll2 += ReadingRoll;
            Reading_IntegralRoll +=  ReadingRoll - AttitudeCorrectionRoll;
            if(Reading_IntegralRoll > TurnOver180Roll)
            {
             Reading_IntegralRoll  = -(TurnOver180Roll - 10000L);
             Reading_IntegralRoll2 = Reading_IntegralRoll;
            }
            if(Reading_IntegralRoll <-TurnOver180Roll)
            {
             Reading_IntegralRoll =  (TurnOver180Roll - 10000L);
             Reading_IntegralRoll2 = Reading_IntegralRoll;
            }
            if(AdValueGyrRoll < 15)   ReadingRoll = -1000;
            if(AdValueGyrRoll <  7)   ReadingRoll = -2000;
            if(BoardRelease == 10)
                         {
              if(AdValueGyrRoll > 1010) ReadingRoll = +1000;
              if(AdValueGyrRoll > 1017) ReadingRoll = +2000;
                         }
                         else
                         {
              if(AdValueGyrRoll > 2020) ReadingRoll = +1000;
              if(AdValueGyrRoll > 2034) ReadingRoll = +2000;
                         }
// Pitch  ++++++++++++++++++++++++++++++++++++++++++++++++
            ReadingPitch -= tmpl2;
            ReadingPitch -= (tmpl*Parameter_AchsGegenKopplung1)/512L;
            Reading_IntegralPitch2 += ReadingPitch;
            Reading_IntegralPitch  += ReadingPitch - AttitudeCorrectionPitch;
            if(Reading_IntegralPitch > TurnOver180Pitch)
            {
             Reading_IntegralPitch = -(TurnOver180Pitch - 10000L);
             Reading_IntegralPitch2 = Reading_IntegralPitch;
            }
            if(Reading_IntegralPitch <-TurnOver180Pitch)
            {
             Reading_IntegralPitch =  (TurnOver180Pitch - 10000L);
             Reading_IntegralPitch2 = Reading_IntegralPitch;
            }
            if(AdValueGyrPitch < 15)   ReadingPitch = -1000;
            if(AdValueGyrPitch <  7)   ReadingPitch = -2000;
            if(BoardRelease == 10)
                         {
              if(AdValueGyrPitch > 1010) ReadingPitch = +1000;
              if(AdValueGyrPitch > 1017) ReadingPitch = +2000;
                         }
                         else
                         {
              if(AdValueGyrPitch > 2020) ReadingPitch = +1000;
              if(AdValueGyrPitch > 2034) ReadingPitch = +2000;
                         }
//++++++++++++++++++++++++++++++++++++++++++++++++
// ADC einschalten
    ADC_Enable();
//++++++++++++++++++++++++++++++++++++++++++++++++

    Integral_Yaw  = Reading_Integral_Yaw;
    IntegralPitch = Reading_IntegralPitch;
    IntegralRoll = Reading_IntegralRoll;
    IntegralPitch2 = Reading_IntegralPitch2;
    IntegralRoll2 = Reading_IntegralRoll2;

  if(ParamSet.GlobalConfig & CFG_ROTARY_RATE_LIMITER && !Looping_Pitch && !Looping_Roll)
  {
    if(ReadingPitch > 200)       ReadingPitch += 4 * (ReadingPitch - 200);
    else if(ReadingPitch < -200) ReadingPitch += 4 * (ReadingPitch + 200);
    if(ReadingRoll > 200)       ReadingRoll += 4 * (ReadingRoll - 200);
    else if(ReadingRoll < -200) ReadingRoll += 4 * (ReadingRoll + 200);
  }
    if(Poti1 < PPM_in[ParamSet.ChannelAssignment[CH_POTI1]] + 110) Poti1++; else if(Poti1 > PPM_in[ParamSet.ChannelAssignment[CH_POTI1]] + 110 && Poti1) Poti1--;
    if(Poti2 < PPM_in[ParamSet.ChannelAssignment[CH_POTI2]] + 110) Poti2++; else if(Poti2 > PPM_in[ParamSet.ChannelAssignment[CH_POTI2]] + 110 && Poti2) Poti2--;
    if(Poti3 < PPM_in[ParamSet.ChannelAssignment[CH_POTI3]] + 110) Poti3++; else if(Poti3 > PPM_in[ParamSet.ChannelAssignment[CH_POTI3]] + 110 && Poti3) Poti3--;
    if(Poti4 < PPM_in[ParamSet.ChannelAssignment[CH_POTI4]] + 110) Poti4++; else if(Poti4 > PPM_in[ParamSet.ChannelAssignment[CH_POTI4]] + 110 && Poti4) Poti4--;
    if(Poti1 < 0) Poti1 = 0; else if(Poti1 > 255) Poti1 = 255;
    if(Poti2 < 0) Poti2 = 0; else if(Poti2 > 255) Poti2 = 255;
    if(Poti3 < 0) Poti3 = 0; else if(Poti3 > 255) Poti3 = 255;
    if(Poti4 < 0) Poti4 = 0; else if(Poti4 > 255) Poti4 = 255;
}

//############################################################################
// Messwerte beim Ermitteln der Nullage
void CalibMean(void)
//############################################################################
{
    // ADC auschalten, damit die Werte sich nicht während der Berechnung ändern
        ADC_Disable();
        ReadingPitch = AdValueGyrPitch;
        ReadingRoll = AdValueGyrRoll;
        ReadingYaw = AdValueGyrYaw;
        Mean_AccPitch = ACC_AMPLIFY * (long)AdValueAccPitch;
        Mean_AccRoll = ACC_AMPLIFY * (long)AdValueAccRoll;
        Mean_AccTop = (long)AdValueAccTop;
   // ADC einschalten
    ADC_Enable();
    if(Poti1 < PPM_in[ParamSet.ChannelAssignment[CH_POTI1]] + 110) Poti1++; else if(Poti1 > PPM_in[ParamSet.ChannelAssignment[CH_POTI1]] + 110 && Poti1) Poti1--;
    if(Poti2 < PPM_in[ParamSet.ChannelAssignment[CH_POTI2]] + 110) Poti2++; else if(Poti2 > PPM_in[ParamSet.ChannelAssignment[CH_POTI2]] + 110 && Poti2) Poti2--;
    if(Poti3 < PPM_in[ParamSet.ChannelAssignment[CH_POTI3]] + 110) Poti3++; else if(Poti3 > PPM_in[ParamSet.ChannelAssignment[CH_POTI3]] + 110 && Poti3) Poti3--;
    if(Poti4 < PPM_in[ParamSet.ChannelAssignment[CH_POTI4]] + 110) Poti4++; else if(Poti4 > PPM_in[ParamSet.ChannelAssignment[CH_POTI4]] + 110 && Poti4) Poti4--;
    if(Poti1 < 0) Poti1 = 0; else if(Poti1 > 255) Poti1 = 255;
    if(Poti2 < 0) Poti2 = 0; else if(Poti2 > 255) Poti2 = 255;
    if(Poti3 < 0) Poti3 = 0; else if(Poti3 > 255) Poti3 = 255;
    if(Poti4 < 0) Poti4 = 0; else if(Poti4 > 255) Poti4 = 255;

        TurnOver180Pitch = (long) ParamSet.AngleTurnOverPitch * 2500L;
        TurnOver180Roll = (long) ParamSet.AngleTurnOverRoll * 2500L;
}

//############################################################################
// Senden der Motorwerte per I2C-Bus
void SendMotorData(void)
//############################################################################
{
    if(MOTOR_OFF || !MotorsOn)
        {
        Motor_Rear = 0;
        Motor_Front = 0;
        Motor_Right = 0;
        Motor_Left = 0;
        if(MotorTest[0]) Motor_Front = MotorTest[0];
        if(MotorTest[1]) Motor_Rear = MotorTest[1];
        if(MotorTest[2]) Motor_Left = MotorTest[2];
        if(MotorTest[3]) Motor_Right = MotorTest[3];
        }

    DebugOut.Analog[12] = Motor_Front;
    DebugOut.Analog[13] = Motor_Rear;
    DebugOut.Analog[14] = Motor_Left;
    DebugOut.Analog[15] = Motor_Right;

    //Start I2C Interrupt Mode
    twi_state = 0;
    motor = 0;
    i2c_start();
}



//############################################################################
// Trägt ggf. das Poti als Parameter ein
void ParameterZuordnung(void)
//############################################################################
{

 #define CHK_POTI(b,a,min,max) { if(a > 250) { if(a == 251) b = Poti1; else if(a == 252) b = Poti2; else if(a == 253) b = Poti3; else if(a == 254) b = Poti4;} else b = a; if(b <= min) b = min; else if(b >= max) b = max;}
 CHK_POTI(Parameter_MaxHoehe,ParamSet.MaxHight,0,255);
 CHK_POTI(Parameter_Luftdruck_D,ParamSet.AirPressure_D,0,100);
 CHK_POTI(Parameter_Hoehe_P,ParamSet.Hight_P,0,100);
 CHK_POTI(Parameter_Hoehe_ACC_Wirkung,ParamSet.Hight_ACC_Effect,0,255);
 CHK_POTI(Parameter_CompassYawEffect,ParamSet.CompassYawEffect,0,255);
 CHK_POTI(Parameter_Gyro_P,ParamSet.Gyro_P,10,255);
 CHK_POTI(Parameter_Gyro_I,ParamSet.Gyro_I,0,255);
 CHK_POTI(Parameter_I_Factor,ParamSet.I_Factor,0,255);
 CHK_POTI(Parameter_UserParam1,ParamSet.UserParam1,0,255);
 CHK_POTI(Parameter_UserParam2,ParamSet.UserParam2,0,255);
 CHK_POTI(Parameter_UserParam3,ParamSet.UserParam3,0,255);
 CHK_POTI(Parameter_UserParam4,ParamSet.UserParam4,0,255);
 CHK_POTI(Parameter_UserParam5,ParamSet.UserParam5,0,255);
 CHK_POTI(Parameter_UserParam6,ParamSet.UserParam6,0,255);
 CHK_POTI(Parameter_UserParam7,ParamSet.UserParam7,0,255);
 CHK_POTI(Parameter_UserParam8,ParamSet.UserParam8,0,255);
 CHK_POTI(Parameter_ServoPitchControl,ParamSet.ServoPitchControl,0,255);
 CHK_POTI(Parameter_LoopGasLimit,ParamSet.LoopGasLimit,0,255);
 CHK_POTI(Parameter_AchsKopplung1,    ParamSet.AchsKopplung1,0,255);
 CHK_POTI(Parameter_AchsGegenKopplung1,ParamSet.AchsGegenKopplung1,0,255);
 CHK_POTI(Parameter_DynamicStability,ParamSet.DynamicStability,0,255);

 Ki = (float) Parameter_I_Factor * 0.0001;
 MAX_GAS = ParamSet.Gas_Max;
 MIN_GAS = ParamSet.Gas_Min;
}


//############################################################################
//
void MotorRegler(void)
//############################################################################
{
         int MotorValue, pd_ergebnis, h, tmp_int;
         int YawMixingFraction, GasMixingFraction;
     static long SumPitch = 0, SumRoll = 0;
     static long SetPointYaw = 0, tmp_long, tmp_long2;
     static long IntegralErrorPitch = 0;
     static long IntegralErrorRoll = 0;
         static unsigned int RcLostTimer;
         static unsigned char delay_neutral = 0;
         static unsigned char delay_einschalten = 0,delay_ausschalten = 0;
         static unsigned int  modell_fliegt = 0;
     static int hoehenregler = 0;
     static char TimerDebugOut = 0;
     static char StoreNewCompassCourse = 0;
     static long CorrectionPitch, CorrectionRoll;

        Mean();

    GRN_ON;
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Gaswert ermitteln
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
        GasMixingFraction = StickGas;
    if(GasMixingFraction < 0) GasMixingFraction = 0;
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Emfang schlecht
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
   if(SenderOkay < 100)
        {
        if(!PcZugriff)
         {
           if(BeepModulation == 0xFFFF)
            {
             BeepTime = 15000; // 1.5 seconds
             BeepModulation = 0x0C00;
            }
         }
        if(RcLostTimer) RcLostTimer--;
        else
         {
          MotorsOn = 0;
          EmergencyLanding = 0;
         }
        ROT_ON;
        if(modell_fliegt > 2000)  // wahrscheinlich in der Luft --> langsam absenken
            {
            GasMixingFraction = ParamSet.EmergencyGas;
            EmergencyLanding = 1;
            PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] = 0;
            PPM_in[ParamSet.ChannelAssignment[CH_ROLL]] = 0;
            PPM_in[ParamSet.ChannelAssignment[CH_YAW]] = 0;
            }
         else MotorsOn = 0;
        }
        else
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Emfang gut
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
        if(SenderOkay > 140)
            {
            EmergencyLanding = 0;
            RcLostTimer = ParamSet.EmergencyGasDuration * 50;
            if(GasMixingFraction > 40)
                {
                if(modell_fliegt < 0xffff) modell_fliegt++;
                }
            if((modell_fliegt < 200) || (GasMixingFraction < 40))
                {
                SumPitch = 0;
                SumRoll = 0;
                Reading_Integral_Yaw = 0;
                Reading_Integral_Yaw2 = 0;
                }
            if((PPM_in[ParamSet.ChannelAssignment[CH_GAS]] > 80) && MotorsOn == 0)
                {
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// auf Nullwerte kalibrieren
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
                if(PPM_in[ParamSet.ChannelAssignment[CH_YAW]] > 75)  // Neutralwerte
                    {
                    if(++delay_neutral > 200)  // nicht sofort
                        {
                        GRN_OFF;
                        MotorsOn = 0;
                        delay_neutral = 0;
                        modell_fliegt = 0;
                        if(PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] > 70 || abs(PPM_in[ParamSet.ChannelAssignment[CH_ROLL]]) > 70)
                        {
                         unsigned char setting=1;
                         if(PPM_in[ParamSet.ChannelAssignment[CH_ROLL]] > 70 && PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] < 70) setting = 1;
                         if(PPM_in[ParamSet.ChannelAssignment[CH_ROLL]] > 70 && PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] > 70) setting = 2;
                         if(PPM_in[ParamSet.ChannelAssignment[CH_ROLL]] < 70 && PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] > 70) setting = 3;
                         if(PPM_in[ParamSet.ChannelAssignment[CH_ROLL]] <-70 && PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] > 70) setting = 4;
                         if(PPM_in[ParamSet.ChannelAssignment[CH_ROLL]] <-70 && PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] < 70) setting = 5;
                         SetActiveParamSet(setting);  // aktiven Datensatz merken
                        }
                        if((ParamSet.GlobalConfig & CFG_HEIGHT_CONTROL))  // Höhenregelung aktiviert?
                          {
                             if((ReadingAirPressure > 950) || (ReadingAirPressure < 750)) SearchAirPressureOffset();
                          }
                            ParamSet_ReadFromEEProm(GetActiveParamSet());
                        SetNeutral();
                        Piep(GetActiveParamSet());
                        }
                    }
                 else
                if(PPM_in[ParamSet.ChannelAssignment[CH_YAW]] < -75)  // ACC Neutralwerte speichern
                    {
                    if(++delay_neutral > 200)  // nicht sofort
                        {
                        GRN_OFF;
                        SetParamByte(PID_ACC_PITCH,0xFF); // Werte löschen
                        MotorsOn = 0;
                        delay_neutral = 0;
                        modell_fliegt = 0;
                        SetNeutral();
                        SetParamByte(PID_ACC_PITCH, NeutralAccX / 256); // ACC-NeutralWerte speichern
                        SetParamByte(PID_ACC_PITCH+1,NeutralAccX % 256); // ACC-NeutralWerte speichern
                        SetParamByte(PID_ACC_ROLL,NeutralAccY / 256);
                        SetParamByte(PID_ACC_ROLL+1,NeutralAccY % 256);
                        SetParamByte(PID_ACC_Z,(int)NeutralAccZ / 256);
                        SetParamByte(PID_ACC_Z+1,(int)NeutralAccZ % 256);
                        Piep(GetActiveParamSet());
                        }
                    }
                 else delay_neutral = 0;
                }
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Gas ist unten
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
            if(PPM_in[ParamSet.ChannelAssignment[CH_GAS]] < 35-120)
                {
                // Starten
                if(PPM_in[ParamSet.ChannelAssignment[CH_YAW]] < -75)
                    {
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Einschalten
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
                    if(++delay_einschalten > 200)
                        {
                        delay_einschalten = 200;
                        modell_fliegt = 1;
                        MotorsOn = 1;
                        SetPointYaw = 0;
                        Reading_Integral_Yaw = 0;
                        Reading_Integral_Yaw2 = 0;
                        Reading_IntegralPitch = 0;
                        Reading_IntegralRoll = 0;
                        Reading_IntegralPitch2 = IntegralPitch;
                        Reading_IntegralRoll2 = IntegralRoll;
                        SumPitch = 0;
                        SumRoll = 0;
                        }
                    }
                    else delay_einschalten = 0;
                //Auf Neutralwerte setzen
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Auschalten
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
                if(PPM_in[ParamSet.ChannelAssignment[CH_YAW]] > 75)
                    {
                    if(++delay_ausschalten > 200)  // nicht sofort
                        {
                        MotorsOn = 0;
                        delay_ausschalten = 200;
                        modell_fliegt = 0;
                        }
                    }
                else delay_ausschalten = 0;
                }
            }

// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// neue Werte von der Funke
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 if(!NewPpmData-- || EmergencyLanding)
  {
    int tmp_int;
    ParameterZuordnung();
    StickPitch = (StickPitch * 3 + PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] * ParamSet.Stick_P) / 4;
    StickPitch += PPM_diff[ParamSet.ChannelAssignment[CH_PITCH]] * ParamSet.Stick_D;
    StickRoll = (StickRoll * 3 + PPM_in[ParamSet.ChannelAssignment[CH_ROLL]] * ParamSet.Stick_P) / 4;
    StickRoll += PPM_diff[ParamSet.ChannelAssignment[CH_ROLL]] * ParamSet.Stick_D;

    StickYaw = -PPM_in[ParamSet.ChannelAssignment[CH_YAW]];
        StickGas  = PPM_in[ParamSet.ChannelAssignment[CH_GAS]] + 120;

   if(abs(PPM_in[ParamSet.ChannelAssignment[CH_PITCH]]) > MaxStickPitch)
     MaxStickPitch = abs(PPM_in[ParamSet.ChannelAssignment[CH_PITCH]]); else MaxStickPitch--;
   if(abs(PPM_in[ParamSet.ChannelAssignment[CH_ROLL]]) > MaxStickRoll)
     MaxStickRoll = abs(PPM_in[ParamSet.ChannelAssignment[CH_ROLL]]); else MaxStickRoll--;
   if(EmergencyLanding)  {MaxStickPitch = 0; MaxStickRoll = 0;}

    GyroFactor     = ((float)Parameter_Gyro_P + 10.0) / 256.0;
    IntegralFactor = ((float) Parameter_Gyro_I) / 44000;

//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//+ Digitale Steuerung per DubWise
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#define KEY_VALUE (Parameter_UserParam1 * 4)  //(Poti3 * 8)
if(DubWiseKeys[1]) BeepTime = 10;
    if(DubWiseKeys[1] & DUB_KEY_UP)    tmp_int = KEY_VALUE;   else
    if(DubWiseKeys[1] & DUB_KEY_DOWN)  tmp_int = -KEY_VALUE;  else   tmp_int = 0;
    ExternStickPitch= (ExternStickPitch* 7 + tmp_int) / 8;
    if(DubWiseKeys[1] & DUB_KEY_LEFT)  tmp_int = KEY_VALUE; else
    if(DubWiseKeys[1] & DUB_KEY_RIGHT) tmp_int = -KEY_VALUE; else tmp_int = 0;
    ExternStickRoll = (ExternStickRoll * 7 + tmp_int) / 8;

    if(DubWiseKeys[0] & 8)  ExternStickYaw = 50;else
    if(DubWiseKeys[0] & 4)  ExternStickYaw =-50;else ExternStickYaw = 0;
    if(DubWiseKeys[0] & 2)  ExternHightValue++;
    if(DubWiseKeys[0] & 16) ExternHightValue--;

    StickPitch += ExternStickPitch/ 8;
    StickRoll += ExternStickRoll / 8;
    StickYaw += ExternStickYaw;
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//+ Analoge Steuerung per Seriell
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
   if(ExternControl.Config & 0x01 && Parameter_UserParam1 > 128)
    {
         StickPitch += (int) ExternControl.Pitch * (int) ParamSet.Stick_P;
         StickRoll += (int) ExternControl.Roll * (int) ParamSet.Stick_P;
         StickYaw += ExternControl.Yaw;
     ExternHightValue =  (int) ExternControl.Hight * (int)ParamSet.Hight_Gain;
     if(ExternControl.Gas < StickGas) StickGas = ExternControl.Gas;
    }

    if(ParamSet.GlobalConfig & CFG_HEADING_HOLD) IntegralFactor =  0;
    if(GyroFactor < 0) GyroFactor = 0;
    if(IntegralFactor < 0) IntegralFactor = 0;
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Looping?
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  if((PPM_in[ParamSet.ChannelAssignment[CH_ROLL]] > ParamSet.LoopThreshold) && ParamSet.LoopConfig & CFG_LOOP_LEFT)  Looping_Left = 1;
  else
   {
     {
      if((PPM_in[ParamSet.ChannelAssignment[CH_ROLL]] < (ParamSet.LoopThreshold - ParamSet.LoopHysteresis))) Looping_Left = 0;
     }
   }
  if((PPM_in[ParamSet.ChannelAssignment[CH_ROLL]] < -ParamSet.LoopThreshold) && ParamSet.LoopConfig & CFG_LOOP_RIGHT) Looping_Right = 1;
   else
   {
   if(Looping_Right) // Hysterese
     {
      if(PPM_in[ParamSet.ChannelAssignment[CH_ROLL]] > -(ParamSet.LoopThreshold - ParamSet.LoopHysteresis)) Looping_Right = 0;
     }
   }

  if((PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] > ParamSet.LoopThreshold) && ParamSet.LoopConfig & CFG_LOOP_UP) Looping_Top = 1;
  else
   {
    if(Looping_Top)  // Hysterese
     {
      if((PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] < (ParamSet.LoopThreshold - ParamSet.LoopHysteresis))) Looping_Top = 0;
     }
   }
  if((PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] < -ParamSet.LoopThreshold) && ParamSet.LoopConfig & CFG_LOOP_DOWN) Looping_Down = 1;
   else
   {
    if(Looping_Down) // Hysterese
     {
      if(PPM_in[ParamSet.ChannelAssignment[CH_PITCH]] > -(ParamSet.LoopThreshold - ParamSet.LoopHysteresis)) Looping_Down = 0;
     }
   }

   if(Looping_Left || Looping_Right)   Looping_Roll = 1; else Looping_Roll = 0;
   if(Looping_Top  || Looping_Down) {Looping_Pitch = 1; Looping_Roll = 0; Looping_Left = 0; Looping_Right = 0;} else Looping_Pitch = 0;
  } // Ende neue Funken-Werte

  if(Looping_Roll) BeepTime = 100;
  if(Looping_Roll || Looping_Pitch)
   {
    if(GasMixingFraction > ParamSet.LoopGasLimit) GasMixingFraction = ParamSet.LoopGasLimit;
   }


// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Bei Empfangsausfall im Flug
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
   if(EmergencyLanding)
    {
     StickYaw = 0;
     StickPitch = 0;
     StickRoll = 0;
     GyroFactor  = 0.5;//Originalwert von Holger 0.1;
     IntegralFactor = 0.003; //Originalwert von Holger 0.005;
     Looping_Roll = 0;
     Looping_Pitch = 0;
    }


// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Integrale auf ACC-Signal abgleichen
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#define ABGLEICH_ANZAHL 256L

 MeanIntegralPitch  += IntegralPitch;    // Für die Mittelwertbildung aufsummieren
 MeanIntegralRoll  += IntegralRoll;
 MeanIntegralPitch2 += IntegralPitch2;
 MeanIntegralRoll2 += IntegralRoll2;

 if(Looping_Pitch || Looping_Roll)
  {
    IntegralAccPitch = 0;
    IntegralAccRoll = 0;
    MeanIntegralPitch = 0;
    MeanIntegralRoll = 0;
    MeanIntegralPitch2 = 0;
    MeanIntegralRoll2 = 0;
    Reading_IntegralPitch2 = Reading_IntegralPitch;
    Reading_IntegralRoll2 = Reading_IntegralRoll;
    ZaehlMessungen = 0;
    AttitudeCorrectionPitch = 0;
    AttitudeCorrectionRoll = 0;
  }

// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  if(!Looping_Pitch && !Looping_Roll)
  {
   long tmp_long, tmp_long2;
    tmp_long = (long)(IntegralPitch / ParamSet.GyroAccFaktor - (long)Mean_AccPitch);
    tmp_long2 = (long)(IntegralRoll / ParamSet.GyroAccFaktor - (long)Mean_AccRoll);
    tmp_long /= 16;
    tmp_long2 /= 16;
   if((MaxStickPitch > 15) || (MaxStickRoll > 15))
    {
    tmp_long  /= 3;
    tmp_long2 /= 3;
    }
   if(abs(PPM_in[ParamSet.ChannelAssignment[CH_YAW]]) > 25)
    {
    tmp_long  /= 3;
    tmp_long2 /= 3;
    }

 #define AUSGLEICH 32
    if(tmp_long >  AUSGLEICH)  tmp_long  = AUSGLEICH;
    if(tmp_long < -AUSGLEICH)  tmp_long  =-AUSGLEICH;
    if(tmp_long2 > AUSGLEICH)  tmp_long2 = AUSGLEICH;
    if(tmp_long2 <-AUSGLEICH)  tmp_long2 =-AUSGLEICH;

    Reading_IntegralPitch -= tmp_long;
    Reading_IntegralRoll -= tmp_long2;
  }
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

 if(ZaehlMessungen >= ABGLEICH_ANZAHL)
 {
  static int cnt = 0;
  static char last_n_p,last_n_n,last_r_p,last_r_n;
  static long MeanIntegralPitch_old,MeanIntegralRoll_old;
  if(!Looping_Pitch && !Looping_Roll)
  {
    MeanIntegralPitch  /= ABGLEICH_ANZAHL;
    MeanIntegralRoll  /= ABGLEICH_ANZAHL;
        IntegralAccPitch = (ParamSet.GyroAccFaktor * IntegralAccPitch) / ABGLEICH_ANZAHL;
        IntegralAccRoll = (ParamSet.GyroAccFaktor * IntegralAccRoll) / ABGLEICH_ANZAHL;
    IntegralAccZ    = IntegralAccZ / ABGLEICH_ANZAHL;
#define MAX_I 0//(Poti2/10)
// Pitch ++++++++++++++++++++++++++++++++++++++++++++++++
    IntegralErrorPitch = (long)(MeanIntegralPitch - (long)IntegralAccPitch);
    CorrectionPitch = IntegralErrorPitch / ParamSet.GyroAccTrim;
// Roll ++++++++++++++++++++++++++++++++++++++++++++++++
    IntegralErrorRoll = (long)(MeanIntegralRoll - (long)IntegralAccRoll);
    CorrectionRoll = IntegralErrorRoll / ParamSet.GyroAccTrim;

    AttitudeCorrectionPitch = CorrectionPitch / ABGLEICH_ANZAHL;
    AttitudeCorrectionRoll = CorrectionRoll / ABGLEICH_ANZAHL;

   if((MaxStickPitch > 15) || (MaxStickRoll > 15) || (abs(PPM_in[ParamSet.ChannelAssignment[CH_YAW]]) > 25))
    {
     AttitudeCorrectionPitch /= 2;
     AttitudeCorrectionPitch /= 2;
    }

// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Gyro-Drift ermitteln
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    MeanIntegralPitch2 /= ABGLEICH_ANZAHL;
    MeanIntegralRoll2 /= ABGLEICH_ANZAHL;
    tmp_long  = IntegralPitch2 - IntegralPitch;
    tmp_long2 = IntegralRoll2 - IntegralRoll;
    //DebugOut.Analog[25] = MeanIntegralRoll2 / 26;

    IntegralErrorPitch = tmp_long;
    IntegralErrorRoll = tmp_long2;
    Reading_IntegralPitch2 -= IntegralErrorPitch;
    Reading_IntegralRoll2 -= IntegralErrorRoll;

//    IntegralErrorPitch = (IntegralErrorPitch * 1 + tmp_long) / 2;
//    IntegralErrorRoll = (IntegralErrorRoll * 1 + tmp_long2) / 2;


DebugOut.Analog[17] = IntegralAccPitch / 26;
DebugOut.Analog[18] = IntegralAccRoll / 26;
DebugOut.Analog[19] = IntegralErrorPitch;// / 26;
DebugOut.Analog[20] = IntegralErrorRoll;// / 26;
DebugOut.Analog[21] = MeanIntegralPitch / 26;
DebugOut.Analog[22] = MeanIntegralRoll / 26;
//DebugOut.Analog[28] = CorrectionPitch;
DebugOut.Analog[29] = CorrectionRoll;
DebugOut.Analog[30] = AttitudeCorrectionRoll * 10;

#define FEHLER_LIMIT  (ABGLEICH_ANZAHL * 4)
#define FEHLER_LIMIT2 (ABGLEICH_ANZAHL * 16)
#define BEWEGUNGS_LIMIT 20000
// Pitch +++++++++++++++++++++++++++++++++++++++++++++++++
        cnt = 1;// + labs(IntegralErrorPitch) / 4096;
        if(labs(MeanIntegralPitch_old - MeanIntegralPitch) < BEWEGUNGS_LIMIT)
        {
        if(IntegralErrorPitch >  FEHLER_LIMIT2)
         {
           if(last_n_p)
           {
            cnt += labs(IntegralErrorPitch) / FEHLER_LIMIT2;
            CorrectionPitch = IntegralErrorPitch / 8;
            if(CorrectionPitch > 5000) CorrectionPitch = 5000;
            AttitudeCorrectionPitch += CorrectionPitch / ABGLEICH_ANZAHL;
           }
           else last_n_p = 1;
         } else  last_n_p = 0;
        if(IntegralErrorPitch < -FEHLER_LIMIT2)
         {
           if(last_n_n)
            {
             cnt += labs(IntegralErrorPitch) / FEHLER_LIMIT2;
             CorrectionPitch = IntegralErrorPitch / 8;
             if(CorrectionPitch < -5000) CorrectionPitch = -5000;
             AttitudeCorrectionPitch += CorrectionPitch / ABGLEICH_ANZAHL;
            }
           else last_n_n = 1;
         } else  last_n_n = 0;
        } else cnt = 0;
        if(cnt > ParamSet.DriftComp) cnt = ParamSet.DriftComp;
        if(IntegralErrorPitch >  FEHLER_LIMIT)   AdNeutralPitch += cnt;
        if(IntegralErrorPitch < -FEHLER_LIMIT)   AdNeutralPitch -= cnt;

// Roll +++++++++++++++++++++++++++++++++++++++++++++++++
        cnt = 1;// + labs(IntegralErrorPitch) / 4096;

        CorrectionRoll = 0;
        if(labs(MeanIntegralRoll_old - MeanIntegralRoll) < BEWEGUNGS_LIMIT)
        {
        if(IntegralErrorRoll >  FEHLER_LIMIT2)
         {
           if(last_r_p)
           {
            cnt += labs(IntegralErrorRoll) / FEHLER_LIMIT2;
            CorrectionRoll = IntegralErrorRoll / 8;
            if(CorrectionRoll > 5000) CorrectionRoll = 5000;
            AttitudeCorrectionRoll += CorrectionRoll / ABGLEICH_ANZAHL;
           }
           else last_r_p = 1;
         } else  last_r_p = 0;
        if(IntegralErrorRoll < -FEHLER_LIMIT2)
         {
           if(last_r_n)
           {
            cnt += labs(IntegralErrorRoll) / FEHLER_LIMIT2;
            CorrectionRoll = IntegralErrorRoll / 8;
            if(CorrectionRoll < -5000) CorrectionRoll = -5000;
            AttitudeCorrectionRoll += CorrectionRoll / ABGLEICH_ANZAHL;
           }
           else last_r_n = 1;
         } else  last_r_n = 0;
        } else
        {
         cnt = 0;
        }

        if(cnt > ParamSet.DriftComp) cnt = ParamSet.DriftComp;
        if(IntegralErrorRoll >  FEHLER_LIMIT)   AdNeutralRoll += cnt;
        if(IntegralErrorRoll < -FEHLER_LIMIT)   AdNeutralRoll -= cnt;
DebugOut.Analog[27] = CorrectionRoll;
DebugOut.Analog[23] = AdNeutralPitch;//10*(AdNeutralPitch - StartNeutralPitch);
DebugOut.Analog[24] = 10*(AdNeutralRoll - StartNeutralRoll);
  }
  else
  {
   AttitudeCorrectionRoll = 0;
   AttitudeCorrectionPitch = 0;
  }

  if(!IntegralFactor) { AttitudeCorrectionRoll = 0; AttitudeCorrectionPitch = 0;} // z.B. bei HH
// +++++++++++++++++++++++++++++++++++++++++++++++++++++
   MeanIntegralPitch_old = MeanIntegralPitch;
   MeanIntegralRoll_old = MeanIntegralRoll;
// +++++++++++++++++++++++++++++++++++++++++++++++++++++
    IntegralAccPitch = 0;
    IntegralAccRoll = 0;
    IntegralAccZ = 0;
    MeanIntegralPitch = 0;
    MeanIntegralRoll = 0;
    MeanIntegralPitch2 = 0;
    MeanIntegralRoll2 = 0;
    ZaehlMessungen = 0;
 }
//DebugOut.Analog[31] = StickRoll / (26*IntegralFactor);

// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//  Gieren
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    if(abs(StickYaw) > 20) // war 35
     {
      if(!(ParamSet.GlobalConfig & CFG_COMPASS_FIX)) StoreNewCompassCourse = 1;
     }
    tmp_int  = (long) ParamSet.Yaw_P * ((long)StickYaw * abs(StickYaw)) / 512L; // expo  y = ax + bx²
    tmp_int += (ParamSet.Yaw_P * StickYaw) / 4;
    SetPointYaw = tmp_int;
    Reading_Integral_Yaw -= tmp_int;
    if(Reading_Integral_Yaw > 50000) Reading_Integral_Yaw = 50000;  // begrenzen
    if(Reading_Integral_Yaw <-50000) Reading_Integral_Yaw =-50000;

// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//  Kompass
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    if(ParamSet.GlobalConfig & CFG_COMPASS_ACTIVE)
    {
        int w,v;
            static uint8_t updCompass = 0;

                if (!updCompass--)              // Aufruf mit ~10 Hz
                {
                        CompassHeading = MM3_heading(); // get current compass reading
                        CompassOffCourse = ((540 + CompassHeading - CompassCourse) % 360) - 180;
                        updCompass = 50;
                }

        w = abs(IntegralPitch /512); // mit zunehmender Neigung den Einfluss drosseln
        v = abs(IntegralRoll /512);
        if(v > w) w = v; // grösste Neigung ermitteln
        if(w < 35 && StoreNewCompassCourse)
         {
          CompassCourse = CompassHeading;
          StoreNewCompassCourse = 0;
         }
        w = (w * Parameter_CompassYawEffect) / 64;           // auf die Wirkung normieren
        w = Parameter_CompassYawEffect - w;                  // Wirkung ggf drosseln
        if(w > 0)
        {
                        Reading_Integral_Yaw -= (CompassOffCourse * w) / 32;  // nach Kompass ausrichten
           }
     }
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//  Debugwerte zuordnen
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  if(!TimerDebugOut--)
   {
    TimerDebugOut = 24;
    DebugOut.Analog[0] = IntegralPitch / ParamSet.GyroAccFaktor;
    DebugOut.Analog[1] = IntegralRoll / ParamSet.GyroAccFaktor;
    DebugOut.Analog[2] = Mean_AccPitch;
    DebugOut.Analog[3] = Mean_AccRoll;
    DebugOut.Analog[4] = ReadingYaw;
    DebugOut.Analog[5] = ReadingHight;
    DebugOut.Analog[6] = (Reading_Integral_Top / 512);
    DebugOut.Analog[8] = CompassHeading;
    DebugOut.Analog[9] = UBat;
    DebugOut.Analog[10] = SenderOkay;
    DebugOut.Analog[16] = Mean_AccTop;

/*    DebugOut.Analog[16] = motor_rx[0];
    DebugOut.Analog[17] = motor_rx[1];
    DebugOut.Analog[18] = motor_rx[2];
    DebugOut.Analog[19] = motor_rx[3];
    DebugOut.Analog[20] = motor_rx[0] + motor_rx[1] + motor_rx[2] + motor_rx[3];
    DebugOut.Analog[20] /= 14;
    DebugOut.Analog[21] = motor_rx[4];
    DebugOut.Analog[22] = motor_rx[5];
    DebugOut.Analog[23] = motor_rx[6];
    DebugOut.Analog[24] = motor_rx[7];
    DebugOut.Analog[25] = motor_rx[4] + motor_rx[5] + motor_rx[6] + motor_rx[7];
*/

//    DebugOut.Analog[9] = ReadingPitch;
//    DebugOut.Analog[9] = SetPointHight;
//    DebugOut.Analog[10] = Reading_Integral_Yaw / 128;
//    DebugOut.Analog[11] = CompassCourse;
//    DebugOut.Analog[10] = Parameter_Gyro_I;
//    DebugOut.Analog[10] = ParamSet.Gyro_I;
//    DebugOut.Analog[9] = CompassOffCourse;
//    DebugOut.Analog[10] = GasMixingFraction;
//    DebugOut.Analog[3] = HoeheD * 32;
//    DebugOut.Analog[4] = hoehenregler;
  }

// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//  Drehgeschwindigkeit und -winkel zu einem Istwert zusammenfassen
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//DebugOut.Analog[26] = ReadingPitch;
//DebugOut.Analog[28] = ReadingRoll;

    if(Looping_Pitch) ReadingPitch = ReadingPitch * GyroFactor;
    else             ReadingPitch = IntegralPitch * IntegralFactor + ReadingPitch * GyroFactor;
    if(Looping_Roll) ReadingRoll = ReadingRoll * GyroFactor;
    else             ReadingRoll = IntegralRoll * IntegralFactor + ReadingRoll * GyroFactor;
    ReadingYaw = ReadingYaw * (2 * GyroFactor) + Integral_Yaw * IntegralFactor / 2;

DebugOut.Analog[25] = IntegralRoll * IntegralFactor;
DebugOut.Analog[31] = StickRoll;// / (26*IntegralFactor);
DebugOut.Analog[28] = ReadingRoll;

    // Maximalwerte abfangen
    #define MAX_SENSOR  2048
    if(ReadingPitch >  MAX_SENSOR) ReadingPitch =  MAX_SENSOR;
    if(ReadingPitch < -MAX_SENSOR) ReadingPitch = -MAX_SENSOR;
    if(ReadingRoll >  MAX_SENSOR) ReadingRoll =  MAX_SENSOR;
    if(ReadingRoll < -MAX_SENSOR) ReadingRoll = -MAX_SENSOR;
    if(ReadingYaw >  MAX_SENSOR) ReadingYaw =  MAX_SENSOR;
    if(ReadingYaw < -MAX_SENSOR) ReadingYaw = -MAX_SENSOR;

// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Höhenregelung
// Die Höhenregelung schwächt lediglich das Gas ab, erhöht es allerdings nicht
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//OCR0B = 180 - (Poti1 + 120) / 4;
//DruckOffsetSetting = OCR0B;
 if((ParamSet.GlobalConfig & CFG_HEIGHT_CONTROL))  // Höhenregelung
  {
    int tmp_int;
    if(ParamSet.GlobalConfig & CFG_HEIGHT_SWITCH)  // Regler wird über Schalter gesteuert
    {
     if(Parameter_MaxHoehe < 50)
      {
       SetPointHight = ReadingHight - 20;  // Parameter_MaxHoehe ist der PPM-Wert des Schalters
       HightControlActive = 0;
      }
      else
        HightControlActive = 1;
    }
    else
    {
     SetPointHight = ((int) ExternHightValue + (int) Parameter_MaxHoehe) * (int)ParamSet.Hight_Gain - 20;
     HightControlActive = 1;
    }

    if(EmergencyLanding) SetPointHight = 0;
    h = ReadingHight;
    if((h > SetPointHight) && HightControlActive)      // zu hoch --> drosseln
     {      h = ((h - SetPointHight) * (int) Parameter_Hoehe_P) / 16; // Differenz bestimmen --> P-Anteil
      h = GasMixingFraction - h;         // vom Gas abziehen
      h -= (HoeheD * Parameter_Luftdruck_D)/8;    // D-Anteil
      tmp_int = ((Reading_Integral_Top / 512) * (signed long) Parameter_Hoehe_ACC_Wirkung) / 32;
      if(tmp_int > 50) tmp_int = 50;
      else if(tmp_int < -50) tmp_int = -50;
      h -= tmp_int;
      hoehenregler = (hoehenregler*15 + h) / 16;
      if(hoehenregler < ParamSet.Hight_MinGas) // nicht unter MIN
       {
         if(GasMixingFraction >= ParamSet.Hight_MinGas) hoehenregler = ParamSet.Hight_MinGas;
         if(GasMixingFraction < ParamSet.Hight_MinGas) hoehenregler = GasMixingFraction;
       }
      if(hoehenregler > GasMixingFraction) hoehenregler = GasMixingFraction; // nicht mehr als Gas
      GasMixingFraction = hoehenregler;
     }
  }
  if(GasMixingFraction > MAX_GAS - 20) GasMixingFraction = MAX_GAS - 20;
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// + Mischer und PI-Regler
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  DebugOut.Analog[7] = GasMixingFraction;
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Gier-Anteil
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#define MUL_G  1.0
    YawMixingFraction = ReadingYaw - SetPointYaw;     // Regler für Gier
// YawMixingFraction = 0;

    if(YawMixingFraction > (GasMixingFraction / 2)) YawMixingFraction = GasMixingFraction / 2;
    if(YawMixingFraction < -(GasMixingFraction / 2)) YawMixingFraction = -(GasMixingFraction / 2);
    if(YawMixingFraction > ((MAX_GAS - GasMixingFraction))) YawMixingFraction = ((MAX_GAS - GasMixingFraction));
    if(YawMixingFraction < -((MAX_GAS - GasMixingFraction))) YawMixingFraction = -((MAX_GAS - GasMixingFraction));

    if(GasMixingFraction < 20) YawMixingFraction = 0;
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Pitch-Achse
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    DiffPitch = ReadingPitch - (StickPitch - GPS_Pitch);        // Differenz bestimmen
    if(IntegralFactor) SumPitch += IntegralPitch * IntegralFactor - (StickPitch - GPS_Pitch); // I-Anteil bei Winkelregelung
    else  SumPitch += DiffPitch; // I-Anteil bei HH
    if(SumPitch >  16000) SumPitch =  16000;
    if(SumPitch < -16000) SumPitch = -16000;
    pd_ergebnis = DiffPitch + Ki * SumPitch; // PI-Regler für Pitch
    // Motor Vorn
    tmp_int = (long)((long)Parameter_DynamicStability * (long)(GasMixingFraction + abs(YawMixingFraction)/2)) / 64;
    if(pd_ergebnis >  tmp_int) pd_ergebnis =  tmp_int;
    if(pd_ergebnis < -tmp_int) pd_ergebnis = -tmp_int;

    MotorValue = GasMixingFraction + pd_ergebnis + YawMixingFraction;     // Mischer
        if ((MotorValue < 0)) MotorValue = 0;
        else if(MotorValue > MAX_GAS)       MotorValue = MAX_GAS;
        if (MotorValue < MIN_GAS)            MotorValue = MIN_GAS;
        Motor_Front = MotorValue;
    // Motor Heck
        MotorValue = GasMixingFraction - pd_ergebnis + YawMixingFraction;
        if ((MotorValue < 0)) MotorValue = 0;
        else if(MotorValue > MAX_GAS)       MotorValue = MAX_GAS;
        if (MotorValue < MIN_GAS)            MotorValue = MIN_GAS;
        Motor_Rear = MotorValue;
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Roll-Achse
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
        DiffRoll = ReadingRoll - (StickRoll  - GPS_Roll);       // Differenz bestimmen
    if(IntegralFactor) SumRoll += IntegralRoll * IntegralFactor - (StickRoll  - GPS_Roll);// I-Anteil bei Winkelregelung
    else                 SumRoll += DiffRoll;  // I-Anteil bei HH
    if(SumRoll >  16000) SumRoll =  16000;
    if(SumRoll < -16000) SumRoll = -16000;
    pd_ergebnis = DiffRoll + Ki * SumRoll;      // PI-Regler für Roll
    tmp_int = (long)((long)Parameter_DynamicStability * (long)(GasMixingFraction + abs(YawMixingFraction)/2)) / 64;
    if(pd_ergebnis >  tmp_int) pd_ergebnis =  tmp_int;
    if(pd_ergebnis < -tmp_int) pd_ergebnis = -tmp_int;
    // Motor Links
    MotorValue = GasMixingFraction + pd_ergebnis - YawMixingFraction;
#define GRENZE Poti1

        if ((MotorValue < 0)) MotorValue = 0;
        else if(MotorValue > MAX_GAS)           MotorValue = MAX_GAS;
        if (MotorValue < MIN_GAS)            MotorValue = MIN_GAS;
    Motor_Left = MotorValue;
    // Motor Rechts
        MotorValue = GasMixingFraction - pd_ergebnis - YawMixingFraction;

        if ((MotorValue < 0)) MotorValue = 0;
        else if(MotorValue > MAX_GAS)           MotorValue = MAX_GAS;
        if (MotorValue < MIN_GAS)            MotorValue = MIN_GAS;
    Motor_Right = MotorValue;
   // +++++++++++++++++++++++++++++++++++++++++++++++
}