Subversion Repositories FlightCtrl

Rev

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

Rev Author Line No. Line
1910 - 1
#include "analog.h"
2
#include "twimaster.h"
3
#include "configuration.h"
4
#include "timer0.h"
5
 
6
#define PITCHROLL_MINLIMIT GYRO_SUMMATION_FACTOR_PITCHROLL * 510
7
#define PITCHROLL_MAXLIMIT GYRO_SUMMATION_FACTOR_PITCHROLL * 515
8
 
2025 - 9
const uint8_t PR_GYROS_ORIENTATION_REVERSED = 0;
1910 - 10
const uint8_t GYRO_QUADRANT = 0;
2025 - 11
const uint8_t YAW_GYRO_REVERSED = 1;
1910 - 12
const uint8_t Z_ACC_REVERSED = 0;
13
 
14
// void gyro_init(void) {}
15
void gyro_calibrate(void) {
16
        uint8_t i, axis, factor, numberOfAxesInRange = 0;
17
        uint16_t timeout;
18
        // GyroDefectNick = 0; GyroDefectRoll = 0; GyroDefectYaw = 0;
19
        timeout = setDelay(2000);
20
 
21
        for (i = 140; i != 0; i--) {
22
                // If all 3 axis are in range, shorten the remaining number of iterations.
23
                if (numberOfAxesInRange == 3 && i > 10)
24
                        i = 9;
25
                numberOfAxesInRange = 0;
26
 
27
                for (axis = PITCH; axis <= YAW; axis++) {
28
                        if (axis == YAW)
29
                                factor = GYRO_SUMMATION_FACTOR_YAW;
30
                        else
31
                                factor = GYRO_SUMMATION_FACTOR_PITCHROLL;
32
 
33
                        if (rawGyroSum[axis] < 510 * factor)
34
                                DACValues[axis]--;
35
                        else if (rawGyroSum[axis] > 515 * factor)
36
                                DACValues[axis]++;
37
                        else
38
                                numberOfAxesInRange++;
39
 
40
                        /* Gyro is defective. But do keep DAC within bounds (it's an op amp not a differential amp). */
41
                        if (DACValues[axis] < 10) {
42
                                DACValues[axis] = 10;
43
                        } else if (DACValues[axis] > 245) {
44
                                DACValues[axis] = 245;
45
                        }
46
                }
47
 
48
                I2C_Start(TWI_STATE_GYRO_OFFSET_TX); // initiate data transmission
49
 
50
                // Wait for I2C to finish transmission.
51
                while (twi_state) {
52
                        // Did it take too long?
53
                        if (checkDelay(timeout)) {
54
                                // printf("\r\n DAC or I2C Error! check I2C, 3Vref, DAC, and BL-Ctrl");
55
                RED_ON;
56
                                break;
57
                        }
58
                }
59
 
60
                analog_start();
61
 
62
                delay_ms_Mess(i < 10 ? 10 : 2);
63
        }
64
        delay_ms_Mess(70);
65
}
66
 
67
void gyro_setDefaults(void) {
2025 - 68
        staticParams.zerothOrderGyroCorrectionFactorx1000 = 25;
69
        staticParams.secondOrderGyroCorrectionDivisor = 1;
70
        staticParams.secondOrderGyroCorrectionLimit = 200;
1910 - 71
}