Subversion Repositories FlightCtrl

Rev

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

Rev Author Line No. Line
205 Nick666 1
/*
256 Nick666 2
 
3
Copyright 2007, Niklas Nold
4
 
205 Nick666 5
This program (files compass.c and compass.h) is free software; you can redistribute it and/or modify
256 Nick666 6
it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation;
205 Nick666 7
either version 3 of the License, or (at your option) any later version.
8
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
9
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
256 Nick666 10
GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License
205 Nick666 11
along with this program. If not, see <http://www.gnu.org/licenses/>.
12
 
257 Nick666 13
Please note: All the other files for the project "Mikrokopter" by H. Buss are under the license (license_buss.txt) published by www.mikrokopter.de
205 Nick666 14
*/
15
 
16
#include "main.h"
17
 
18
MM3_struct MM3;
19
 
20
 
21
//############################################################################
22
//Initialisierung der SPI-Schnittstelle
23
void init_spi(void)
24
//############################################################################
25
{
226 Nick666 26
        SPCR = (1<<SPIE)|(1<<SPE)|(1<<MSTR)|(1<<SPR1)|(1<<SPR0);        //Interrupt an, Master, 156 kHz Oszillator
219 Nick666 27
        //SPSR = (1<<SPI2X);
226 Nick666 28
 
29
    DDRB |= (1<<PB7)|(1<<PB5)|(1<<PB2); // J8, MOSI, SCK Ausgang
30
 
239 Nick666 31
        PORTD &= ~(1<<PD3);     // J5 auf Low
32
 
205 Nick666 33
        MM3.AXIS = MM3_X;
34
        MM3.STATE = MM3_RESET;
35
}
36
 
37
 
38
//############################################################################
39
//Wird in der SIGNAL (SIG_OVERFLOW0) aufgerufen
40
void MM3_timer0(void)
41
//############################################################################
42
{
43
        switch (MM3.STATE)
44
        {
45
        case MM3_RESET:                        
46
                PORTB |= (1<<PB2);      // J8 auf High, MM3 Reset
47
                MM3.STATE = MM3_START_TRANSFER;
275 Nick666 48
                return;
205 Nick666 49
 
50
        case MM3_START_TRANSFER:
226 Nick666 51
                PORTB &= ~(1<<PB2);     // J8 auf Low (war ~125 µs auf High)            
205 Nick666 52
 
279 Nick666 53
                if (MM3.AXIS == MM3_X) SPDR = 0x51;                     // Schreiben ins SPDR löst automatisch Übertragung (MOSI und MISO) aus
54
                else if (MM3.AXIS == MM3_Y) SPDR = 0x52;                // Micromag Period Select ist auf 1024 (0x50)
55
                else if (MM3.AXIS == MM3_Z) SPDR = 0x53;                // 1: x-Achse, 2: Y-Achse, 3: Z-Achse
205 Nick666 56
 
232 Nick666 57
                MM3.DRDY = SetDelay(15);                // Laut Datenblatt max. Zeit bis Messung fertig (bei PS 1024)
205 Nick666 58
                MM3.STATE = MM3_WAIT_DRDY;
275 Nick666 59
                return;
205 Nick666 60
 
61
        case MM3_WAIT_DRDY:
278 Nick666 62
                if (CheckDelay(MM3.DRDY)) {SPDR = 0x00;MM3.STATE = MM3_DRDY;} // Irgendwas ins SPDR, damit Übertragung ausgelöst wird, wenn Wartezeit vorbei
275 Nick666 63
                return;         // Jetzt gehts weiter in SIGNAL (SIG_SPI)
205 Nick666 64
 
261 Nick666 65
        case MM3_TILT:          // Zeitnahe Speicherung der aktuellen Neigung in °
66
                MM3.NickGrad = IntegralNick/(EE_Parameter.UserParam1*8);
67
                MM3.RollGrad = IntegralRoll/(EE_Parameter.UserParam2*8);
68
                MM3.AXIS = MM3_X;
69
                MM3.STATE = MM3_RESET;
275 Nick666 70
                return;
205 Nick666 71
        }
72
}
226 Nick666 73
 
205 Nick666 74
 
75
//############################################################################
76
//SPI byte ready
77
SIGNAL (SIG_SPI)
78
//############################################################################
206 Nick666 79
{      
205 Nick666 80
        switch (MM3.STATE)
81
        {      
280 Nick666 82
        case MM3_DRDY:          // 1. Byte ist da, abspeichern, an die MSB-Stelle rücken                
83
                if (MM3.AXIS == MM3_X)
84
                {
85
                        MM3.x_axis = SPDR;
86
                        MM3.x_axis <<= 8;
87
                }
88
                else if (MM3.AXIS == MM3_Y)
89
                {
90
                        MM3.y_axis = SPDR;
91
                        MM3.y_axis <<= 8;
92
                }
93
                else            // if (MM3.AXIS == MM3_Z)
94
                {
95
                        MM3.z_axis = SPDR;
96
                        MM3.z_axis <<= 8;
97
                }
98
 
99
                SPDR=0x00;              // Übertragung von 2. Byte auslösen
100
                MM3.STATE=MM3_BYTE2;
275 Nick666 101
                return;
280 Nick666 102
 
103
        case MM3_BYTE2:         // 2. Byte der entsprechenden Achse ist da              
104
                if (MM3.AXIS == MM3_X)
105
                {
106
                        MM3.x_axis |= SPDR;
107
                        MM3.x_axis -= OFF_X;    // Sofort Offset aus der Kalibrierung berücksichtigen
108
                        MM3.AXIS = MM3_Y;
109
                        MM3.STATE = MM3_RESET;
110
                }
111
                else if (MM3.AXIS == MM3_Y)
112
                {
113
                        MM3.y_axis |= SPDR;            
114
                        MM3.y_axis -= OFF_Y;
115
                        MM3.AXIS = MM3_Z;
116
                        MM3.STATE = MM3_RESET;
117
                }
118
                else            // if (MM3.AXIS == MM3_Z) 
119
                {
120
                        MM3.z_axis |= SPDR;
121
                        MM3.z_axis -= OFF_Z;
122
                        MM3.STATE = MM3_TILT;
123
                }
124
 
278 Nick666 125
                return;
205 Nick666 126
        }
226 Nick666 127
}
205 Nick666 128
 
226 Nick666 129
signed int MM3_heading(void)
130
{
131
        float sin_nick, cos_nick, sin_roll, cos_roll;
132
        signed int x_corr, y_corr;
133
        signed int heading;
134
 
255 Nick666 135
        // Berechung von sinus und cosinus
240 Nick666 136
        sin_nick = sin_f(MM3.NickGrad);
137
        cos_nick = cos_f(MM3.NickGrad);
138
        sin_roll = sin_f(MM3.RollGrad);
139
        cos_roll = cos_f(MM3.RollGrad);      
226 Nick666 140
 
255 Nick666 141
    // Neigungskompensation
142
        x_corr = (cos_nick * MM3.x_axis) + (((sin_roll *  MM3.y_axis) - (cos_roll * MM3.z_axis)) * sin_nick);
226 Nick666 143
        y_corr = ((cos_roll * MM3.y_axis) + (sin_roll * MM3.z_axis));
235 Nick666 144
 
255 Nick666 145
        // Winkelberechnung
278 Nick666 146
        heading = arctan_i(x_corr, y_corr);
226 Nick666 147
 
148
return (heading);
205 Nick666 149
}