Subversion Repositories FlightCtrl

Rev

Rev 1775 | Rev 1864 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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