Subversion Repositories FlightCtrl

Rev

Rev 1077 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 ingob 1
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2
// + Copyright (c) 04.2007 Holger Buss
3
// + only for non-profit use
4
// + www.MikroKopter.com
5
// + see the File "License.txt" for further Informations
6
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
886 killagreg 7
#include <stdlib.h>
8
#include <avr/io.h>
9
#include <avr/interrupt.h>
1 ingob 10
 
886 killagreg 11
#include "analog.h"
1 ingob 12
#include "main.h"
886 killagreg 13
#include "timer0.h"
14
#include "fc.h"
15
#include "printf_P.h"
16
#include "eeprom.h"
936 killagreg 17
#include "twimaster.h"
1 ingob 18
 
886 killagreg 19
volatile int16_t Current_AccZ = 0;
20
volatile int16_t UBat = 100;
911 killagreg 21
volatile int16_t AdValueGyrNick = 0, AdValueGyrRoll = 0,  AdValueGyrYaw = 0;
936 killagreg 22
uint8_t AnalogOffsetNick = 115, AnalogOffsetRoll = 115, AnalogOffsetYaw = 115;
23
uint8_t GyroDefectNick = 0, GyroDefectRoll = 0, GyroDefectYaw = 0;
911 killagreg 24
volatile int16_t AdValueAccRoll = 0,  AdValueAccNick = 0, AdValueAccTop = 0;
886 killagreg 25
volatile int32_t AirPressure = 32000;
936 killagreg 26
volatile uint8_t average_pressure = 0;
886 killagreg 27
volatile int16_t StartAirPressure;
28
volatile uint16_t ReadingAirPressure = 1023;
1078 killagreg 29
int8_t ExpandBaro = 0;
886 killagreg 30
uint8_t PressureSensorOffset;
31
volatile int16_t HeightD = 0;
32
volatile uint16_t MeasurementCounter = 0;
1 ingob 33
 
886 killagreg 34
/*****************************************************/
35
/*     Initialize Analog Digital Converter           */
36
/*****************************************************/
1 ingob 37
void ADC_Init(void)
886 killagreg 38
{
39
        uint8_t sreg = SREG;
40
        // disable all interrupts before reconfiguration
41
        cli();
42
        //ADC0 ... ADC7 is connected to PortA pin 0 ... 7
43
        DDRA = 0x00;
44
        PORTA = 0x00;
45
        // Digital Input Disable Register 0
46
        // Disable digital input buffer for analog adc_channel pins
47
        DIDR0 = 0xFF;
48
        // external reference, adjust data to the right
49
    ADMUX &= ~((1 << REFS1)|(1 << REFS0)|(1 << ADLAR));
50
    // set muxer to ADC adc_channel 0 (0 to 7 is a valid choice)
51
    ADMUX = (ADMUX & 0xE0) | 0x00;
52
    //Set ADC Control and Status Register A
53
    //Auto Trigger Enable, Prescaler Select Bits to Division Factor 128, i.e. ADC clock = SYSCKL/128 = 156.25 kHz
54
    ADCSRA = (1<<ADATE)|(1<<ADPS2)|(1<<ADPS1)|(1<<ADPS0);
55
        //Set ADC Control and Status Register B
56
        //Trigger Source to Free Running Mode
57
        ADCSRB &= ~((1 << ADTS2)|(1 << ADTS1)|(1 << ADTS0));
58
        // Enable AD conversion
59
        ADC_Enable();
60
    // restore global interrupt flags
61
    SREG = sreg;
1 ingob 62
}
63
 
886 killagreg 64
void SearchAirPressureOffset(void)
1 ingob 65
{
886 killagreg 66
        uint8_t off;
67
        off = GetParamByte(PID_PRESSURE_OFFSET);
68
        if(off > 20) off -= 10;
69
        OCR0A = off;
1078 killagreg 70
        ExpandBaro = 0;
886 killagreg 71
        Delay_ms_Mess(100);
72
        if(ReadingAirPressure < 850) off = 0;
73
        for(; off < 250;off++)
74
        {
75
                OCR0A = off;
76
                Delay_ms_Mess(50);
77
                printf(".");
1078 killagreg 78
                if(ReadingAirPressure < 850) break;
886 killagreg 79
        }
80
        SetParamByte(PID_PRESSURE_OFFSET, off);
81
        PressureSensorOffset = off;
82
        Delay_ms_Mess(300);
1 ingob 83
}
84
 
85
 
936 killagreg 86
void SearchGyroOffset(void)
87
{
88
        uint8_t i, ready = 0;
89
 
90
        GyroDefectNick = 0; GyroDefectRoll = 0; GyroDefectYaw = 0;
91
        for(i = 140; i != 0; i--)
92
        {
93
                if(ready == 3 && i > 10) i = 9;
94
                ready = 0;
95
                if(AdValueGyrNick < 1020) AnalogOffsetNick--; else if(AdValueGyrNick > 1030) AnalogOffsetNick++; else ready++;
96
                if(AdValueGyrRoll < 1020) AnalogOffsetRoll--; else if(AdValueGyrRoll > 1030) AnalogOffsetRoll++; else ready++;
97
                if(AdValueGyrYaw  < 1020) AnalogOffsetYaw-- ; else if(AdValueGyrYaw  > 1030) AnalogOffsetYaw++ ; else ready++;
98
                twi_state = TWI_STATE_GYRO_OFFSET_TX; // set twi_state in TWI ISR to start of Gyro Offset
99
                I2C_Start();   // initiate data transmission
100
                if(AnalogOffsetNick < 10)  { GyroDefectNick = 1; AnalogOffsetNick = 10;}; if(AnalogOffsetNick > 245) { GyroDefectNick = 1; AnalogOffsetNick = 245;};
101
                if(AnalogOffsetRoll < 10)  { GyroDefectRoll = 1; AnalogOffsetRoll = 10;}; if(AnalogOffsetRoll > 245) { GyroDefectRoll = 1; AnalogOffsetRoll = 245;};
102
                if(AnalogOffsetYaw  < 10)  { GyroDefectYaw  = 1; AnalogOffsetYaw  = 10;}; if(AnalogOffsetYaw  > 245) { GyroDefectYaw  = 1; AnalogOffsetYaw  = 245;};
103
                while(twi_state); // wait for end of data transmission
104
                average_pressure = 0;
105
                ADC_Enable();
106
                while(average_pressure == 0);
107
                if(i < 10) Delay_ms_Mess(10);
108
        }
109
        Delay_ms_Mess(70);
110
}
111
 
112
 
113
 
114
 
886 killagreg 115
/*****************************************************/
116
/*     Interrupt Service Routine for ADC             */
117
/*****************************************************/
118
// runs at 156.25 kHz or 6.4 µs
119
// if after (70.4µs) all 11 states are processed the interrupt is disabled
120
// and the update of further ads is stopped
121
// The routine changes the ADC input muxer running
122
// thru the state machine by the following order.
123
// state 0: ch0 (yaw gyro)
124
// state 1: ch1 (roll gyro)
911 killagreg 125
// state 2: ch2 (nick gyro)
886 killagreg 126
// state 3: ch4 (battery voltage -> UBat)
127
// state 4: ch6 (acc y -> Current_AccY)
128
// state 5: ch7 (acc x -> Current_AccX)
129
// state 6: ch0 (yaw gyro average with first reading   -> AdValueGyrYaw)
130
// state 7: ch1 (roll gyro average with first reading  -> AdValueGyrRoll)
911 killagreg 131
// state 8: ch2 (nick gyro average with first reading -> AdValueGyrNick)
886 killagreg 132
// state 9: ch5 (acc z add also 4th part of acc x and acc y to reading)
133
// state10: ch3 (air pressure averaging over 5 single readings -> tmpAirPressure)
134
 
135
ISR(ADC_vect)
1 ingob 136
{
886 killagreg 137
    static uint8_t adc_channel = 0, state = 0;
911 killagreg 138
    static uint16_t yaw1, roll1, nick1;
886 killagreg 139
    static int16_t tmpAirPressure = 0;
140
    // disable further AD conversion
141
    ADC_Disable();
142
    // state machine
1 ingob 143
    switch(state++)
144
        {
145
        case 0:
886 killagreg 146
            yaw1 = ADC; // get Gyro Yaw Voltage 1st sample
147
            adc_channel = 1; // set next channel to ADC1 = ROLL GYRO
148
            MeasurementCounter++; // increment total measurement counter
1 ingob 149
            break;
150
        case 1:
886 killagreg 151
            roll1 = ADC; // get Gyro Roll Voltage 1st sample
911 killagreg 152
            adc_channel = 2; // set next channel to ADC2 = NICK GYRO
1 ingob 153
            break;
154
        case 2:
911 killagreg 155
            nick1 = ADC; // get Gyro Nick Voltage 1st sample
886 killagreg 156
            adc_channel = 4; // set next channel to ADC4 = UBAT
1 ingob 157
            break;
158
        case 3:
886 killagreg 159
                // get actual UBat (Volts*10) is ADC*30V/1024*10 = ADC/3
160
            UBat = (3 * UBat + ADC / 3) / 4; // low pass filter updates UBat only to 1 quater with actual ADC value
161
            adc_channel = 6; // set next channel to ADC6 = ACC_Y
1 ingob 162
            break;
163
        case 4:
886 killagreg 164
            AdValueAccRoll = NeutralAccY - ADC; // get acceleration in Y direction
165
            adc_channel = 7; // set next channel to ADC7 = ACC_X
1 ingob 166
            break;
167
        case 5:
911 killagreg 168
            AdValueAccNick = ADC - NeutralAccX; // get acceleration in X direction
886 killagreg 169
                    adc_channel = 0; // set next channel to ADC7 = YAW GYRO
1 ingob 170
            break;
171
        case 6:
886 killagreg 172
                // average over two samples to create current AdValueGyrYaw
173
            if(BoardRelease == 10)  AdValueGyrYaw = (ADC + yaw1) / 2;
1078 killagreg 174
            else if (BoardRelease == 20)  AdValueGyrYaw = 1023 - (ADC + yaw1);
886 killagreg 175
                        else                                    AdValueGyrYaw = ADC + yaw1; // gain is 2 times lower on FC 1.1
176
            adc_channel = 1; // set next channel to ADC7 = ROLL GYRO
401 hbuss 177
            break;
178
        case 7:
886 killagreg 179
                // average over two samples to create current ADValueGyrRoll
180
            if(BoardRelease == 10)  AdValueGyrRoll = (ADC + roll1) / 2;
181
                        else                                    AdValueGyrRoll = ADC + roll1; // gain is 2 times lower on FC 1.1
911 killagreg 182
            adc_channel = 2; // set next channel to ADC2 = NICK GYRO
401 hbuss 183
            break;
184
        case 8:
911 killagreg 185
                // average over two samples to create current ADValueNick
186
            if(BoardRelease == 10)  AdValueGyrNick = (ADC + nick1) / 2;
187
                        else                                    AdValueGyrNick = ADC + nick1; // gain is 2 times lower on FC 1.1
886 killagreg 188
            adc_channel = 5; // set next channel to ADC5 = ACC_Z
401 hbuss 189
            break;
190
       case 9:
886 killagreg 191
                // get z acceleration
192
            AdValueAccTop =  (int16_t) ADC - NeutralAccZ; // get plain acceleration in Z direction
911 killagreg 193
            AdValueAccTop += abs(AdValueAccNick) / 4 + abs(AdValueAccRoll) / 4;
886 killagreg 194
            if(AdValueAccTop > 1)
1 ingob 195
             {
886 killagreg 196
                if(NeutralAccZ < 750)
197
                {
198
                                        NeutralAccZ += 0.02;
199
                                        if(Model_Is_Flying < 500) NeutralAccZ += 0.1;
200
                                }
201
             }
202
             else if(AdValueAccTop < -1)
1 ingob 203
             {
886 killagreg 204
                if(NeutralAccZ > 550)
205
                {
206
                                        NeutralAccZ-= 0.02;
207
                                        if(Model_Is_Flying < 500) NeutralAccZ -= 0.1;
208
                                }
209
             }
210
            Current_AccZ = ADC;
211
            Reading_Integral_Top += AdValueAccTop;      // Integrieren
212
            Reading_Integral_Top -= Reading_Integral_Top / 1024; // dämfen
213
                adc_channel = 3; // set next channel to ADC3 = air pressure
1 ingob 214
            break;
401 hbuss 215
        case 10:
886 killagreg 216
            tmpAirPressure += ADC; // sum vadc values
217
            if(++average_pressure >= 5) // if 5 values are summerized for averaging
218
            {
219
                ReadingAirPressure = ADC; // update measured air pressure
1078 killagreg 220
                                HeightD = (7 * HeightD + (int16_t)FCParam.Height_D * (int16_t)(255 * ExpandBaro + StartAirPressure - tmpAirPressure - ReadingHeight))/8;  // D-Part = CurrentValue - OldValue
886 killagreg 221
                AirPressure = (tmpAirPressure + 3 * AirPressure) / 4; // averaging using history
1078 killagreg 222
                ReadingHeight = 255 * ExpandBaro + StartAirPressure - AirPressure;
886 killagreg 223
                average_pressure = 0; // reset air pressure measurement counter
224
                tmpAirPressure = 0;
225
            }
226
            adc_channel = 0; // set next channel to ADC0 = GIER GYRO
227
            state = 0; // reset state machine
1 ingob 228
            break;
886 killagreg 229
        default:
230
            adc_channel = 0;
1 ingob 231
            state = 0;
232
            break;
886 killagreg 233
        }
234
    // set adc muxer to next adc_channel
235
    ADMUX = (ADMUX & 0xE0) | adc_channel;
236
    // after full cycle stop further interrupts
237
    if(state != 0) ADC_Enable();
1 ingob 238
}