Subversion Repositories FlightCtrl

Rev

Rev 727 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 727 Rev 741
1
/*
1
/*
2
 
2
 
3
Copyright 2007, Niklas Nold
3
Copyright 2008, by Killagreg
4
 
4
 
5
This program (files compass.c and compass.h) is free software; you can redistribute it and/or modify
5
This program (files mm3.c and mm3.h) is free software; you can redistribute it and/or modify
6
it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation;
6
it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation;
7
either version 3 of the License, or (at your option) any later version.
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;
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
9
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License
10
GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License
11
along with this program. If not, see <http://www.gnu.org/licenses/>.
11
along with this program. If not, see <http://www.gnu.org/licenses/>.
-
 
12
 
12
 
13
Please note: The original implementation was done by Niklas Nold.
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
14
All the other files for the project "Mikrokopter" by H. Buss are under the license (license_buss.txt) published by www.mikrokopter.de
14
*/
15
*/
15
#include <stdlib.h>
16
#include <stdlib.h>
16
#include <avr/io.h>
17
#include <avr/io.h>
17
#include <avr/interrupt.h>
18
#include <avr/interrupt.h>
18
 
19
 
19
#include "mm3.h"
20
#include "mm3.h"
20
#include "main.h"
21
#include "main.h"
21
#include "mymath.h"
22
#include "mymath.h"
22
#include "fc.h"
23
#include "fc.h"
23
#include "timer0.h"
24
#include "timer0.h"
24
#include "rc.h"
25
#include "rc.h"
25
#include "eeprom.h"
26
#include "eeprom.h"
26
 
27
 
27
#define MAX_AXIS_VALUE          500
28
#define MAX_AXIS_VALUE          500
28
 
29
 
29
 
30
 
30
typedef struct
31
typedef struct
31
{
32
{
32
        uint8_t STATE;
33
        uint8_t STATE;
33
        uint16_t DRDY;
34
        uint16_t DRDY;
34
        uint8_t AXIS;
35
        uint8_t AXIS;
35
        int16_t x_axis;
36
        int16_t x_axis;
36
        int16_t y_axis;
37
        int16_t y_axis;
37
        int16_t z_axis;
38
        int16_t z_axis;
38
} MM3_working_t;
39
} MM3_working_t;
39
 
40
 
40
 
41
 
41
// MM3 State Machine
42
// MM3 State Machine
42
#define MM3_STATE_RESET                         0
43
#define MM3_STATE_RESET                         0
43
#define MM3_STATE_START_TRANSFER        1
44
#define MM3_STATE_START_TRANSFER        1
44
#define MM3_STATE_WAIT_DRDY                     2
45
#define MM3_STATE_WAIT_DRDY                     2
45
#define MM3_STATE_DRDY                          3
46
#define MM3_STATE_DRDY                          3
46
#define MM3_STATE_BYTE2                         4
47
#define MM3_STATE_BYTE2                         4
47
 
48
 
48
#define MM3_X_AXIS              0x01
49
#define MM3_X_AXIS              0x01
49
#define MM3_Y_AXIS              0x02
50
#define MM3_Y_AXIS              0x02
50
#define MM3_Z_AXIS              0x03
51
#define MM3_Z_AXIS              0x03
51
 
52
 
52
 
53
 
53
#define MM3_PERIOD_32   0x00
54
#define MM3_PERIOD_32   0x00
54
#define MM3_PERIOD_64   0x10
55
#define MM3_PERIOD_64   0x10
55
#define MM3_PERIOD_128  0x20
56
#define MM3_PERIOD_128  0x20
56
#define MM3_PERIOD_256  0x30
57
#define MM3_PERIOD_256  0x30
57
#define MM3_PERIOD_512  0x40
58
#define MM3_PERIOD_512  0x40
58
#define MM3_PERIOD_1024 0x50
59
#define MM3_PERIOD_1024 0x50
59
#define MM3_PERIOD_2048 0x60
60
#define MM3_PERIOD_2048 0x60
60
#define MM3_PERIOD_4096 0x70
61
#define MM3_PERIOD_4096 0x70
61
 
62
 
62
MM3_calib_t MM3_calib;
63
MM3_calib_t MM3_calib;
63
volatile MM3_working_t MM3;
64
volatile MM3_working_t MM3;
-
 
65
static volatile uint8_t MM3_Timeout = 0;
64
 
66
 
65
 
67
 
66
 
68
 
67
/*********************************************/
69
/*********************************************/
68
/*  Initialize Interface to MM3 Compass      */
70
/*  Initialize Interface to MM3 Compass      */
69
/*********************************************/
71
/*********************************************/
70
void MM3_Init(void)
72
void MM3_Init(void)
71
{
73
{
72
        uint8_t sreg = SREG;
74
        uint8_t sreg = SREG;
73
 
75
 
74
        cli();
76
        cli();
75
 
77
 
76
        // Configure Pins for SPI
78
        // Configure Pins for SPI
77
        // set SCK (PB7), MOSI (PB5) as output
79
        // set SCK (PB7), MOSI (PB5) as output
78
        DDRB |= (1<<DDB7)|(1<<DDB5);
80
        DDRB |= (1<<DDB7)|(1<<DDB5);
79
        // set MISO (PB6) as input
81
        // set MISO (PB6) as input
80
        DDRB &= ~(1<<DDB6);
82
        DDRB &= ~(1<<DDB6);
81
 
83
 
82
        // Output Pins PC4->MM3_SS ,PC5->MM3_RESET
84
        // Output Pins PC4->MM3_SS ,PC5->MM3_RESET
83
        DDRC |= (1<<DDC4)|(1<<DDC5);
85
        DDRC |= (1<<DDC4)|(1<<DDC5);
84
        // set pins permanent to low
86
        // set pins permanent to low
85
        PORTC &= ~((1<<PORTC4)|(1<<PORTC5));
87
        PORTC &= ~((1<<PORTC4)|(1<<PORTC5));
86
 
88
 
87
        // Initialize SPI-Interface
89
        // Initialize SPI-Interface
88
        // Enable interrupt (SPIE=1)
90
        // Enable interrupt (SPIE=1)
89
        // Enable SPI bus (SPE=1)
91
        // Enable SPI bus (SPE=1)
90
        // MSB transmitted first (DORD = 0)
92
        // MSB transmitted first (DORD = 0)
91
        // Master SPI Mode (MSTR=1)
93
        // Master SPI Mode (MSTR=1)
92
        // Clock polarity low whn idle (CPOL=0)
94
        // Clock polarity low whn idle (CPOL=0)
93
        // clock phase sample at leading edge (CPHA=0)
95
        // clock phase sample at leading edge (CPHA=0)
94
        // clock rate = SYSCLK/128 (SPI2X=0, SPR1=1, SPR0=1) 20MHz/128 = 156.25kHz
96
        // clock rate = SYSCLK/128 (SPI2X=0, SPR1=1, SPR0=1) 20MHz/128 = 156.25kHz
95
        SPCR = (1<<SPIE)|(1<<SPE)|(0<<DORD)|(1<<MSTR)|(0<<CPOL)|(0<<CPHA)|(1<<SPR1)|(1<<SPR0);
97
        SPCR = (1<<SPIE)|(1<<SPE)|(0<<DORD)|(1<<MSTR)|(0<<CPOL)|(0<<CPHA)|(1<<SPR1)|(1<<SPR0);
96
        SPSR &= ~(1<<SPI2X);
98
        SPSR &= ~(1<<SPI2X);
97
 
99
 
98
    // Init Statemachine
100
    // Init Statemachine
99
        MM3.AXIS = MM3_X_AXIS;
101
        MM3.AXIS = MM3_X_AXIS;
100
        MM3.STATE = MM3_STATE_RESET;
102
        MM3.STATE = MM3_STATE_RESET;
101
 
103
 
102
        // Read calibration from EEprom
104
        // Read calibration from EEprom
103
        MM3_calib.X_off = (int8_t)GetParamByte(PID_MM3_X_OFF);
105
        MM3_calib.X_off = (int8_t)GetParamByte(PID_MM3_X_OFF);
104
        MM3_calib.Y_off = (int8_t)GetParamByte(PID_MM3_Y_OFF);
106
        MM3_calib.Y_off = (int8_t)GetParamByte(PID_MM3_Y_OFF);
105
        MM3_calib.Z_off = (int8_t)GetParamByte(PID_MM3_Z_OFF);
107
        MM3_calib.Z_off = (int8_t)GetParamByte(PID_MM3_Z_OFF);
106
        MM3_calib.X_range = (int16_t)GetParamWord(PID_MM3_X_RANGE);
108
        MM3_calib.X_range = (int16_t)GetParamWord(PID_MM3_X_RANGE);
107
        MM3_calib.Y_range = (int16_t)GetParamWord(PID_MM3_Y_RANGE);
109
        MM3_calib.Y_range = (int16_t)GetParamWord(PID_MM3_Y_RANGE);
108
        MM3_calib.Z_range = (int16_t)GetParamWord(PID_MM3_Z_RANGE);
110
        MM3_calib.Z_range = (int16_t)GetParamWord(PID_MM3_Z_RANGE);
-
 
111
 
-
 
112
        MM3_Timeout = 0;
109
 
113
 
110
        SREG = sreg;
114
        SREG = sreg;
111
}
115
}
112
 
116
 
113
 
117
 
114
/*********************************************/
118
/*********************************************/
115
/*  Get Data from MM3                        */
119
/*  Get Data from MM3                        */
116
/*********************************************/
120
/*********************************************/
117
void MM3_Update() // called every 102.4 ms by timer 0 ISR
121
void MM3_Update() // called every 102.4 µs by timer 0 ISR
118
{
122
{
119
        switch (MM3.STATE)
123
        switch (MM3.STATE)
120
        {
124
        {
121
        case MM3_STATE_RESET:
125
        case MM3_STATE_RESET:
122
                PORTC &= ~(1<<PORTC4); // select slave
126
                PORTC &= ~(1<<PORTC4);  // select slave
123
                PORTC |= (1<<PORTC5);   // PC5 to High, MM3 Reset
127
                PORTC |= (1<<PORTC5);   // PC5 to High, MM3 Reset
124
                MM3.STATE = MM3_STATE_START_TRANSFER;
128
                MM3.STATE = MM3_STATE_START_TRANSFER;
125
                return;
129
                return;
126
 
130
 
127
        case MM3_STATE_START_TRANSFER:
131
        case MM3_STATE_START_TRANSFER:
128
                PORTC &= ~(1<<PORTC5);  // PC4 auf Low (was 102.4 µs at high level)
132
                PORTC &= ~(1<<PORTC5);  // PC4 auf Low (was 102.4 µs at high level)
129
 
133
 
130
                // write to SPDR triggers automatically the transfer MOSI MISO
134
                // write to SPDR triggers automatically the transfer MOSI MISO
131
                // MM3 Period, + AXIS code
135
                // MM3 Period, + AXIS code
-
 
136
                switch(MM3.AXIS)
-
 
137
                {
-
 
138
                case MM3_X_AXIS:
132
                if (MM3.AXIS == MM3_X_AXIS) SPDR = MM3_PERIOD_256 + MM3_X_AXIS;
139
                        SPDR = MM3_PERIOD_256 + MM3_X_AXIS;
-
 
140
                        break;
-
 
141
                case MM3_Y_AXIS:
133
                else if (MM3.AXIS == MM3_Y_AXIS) SPDR = MM3_PERIOD_256 + MM3_Y_AXIS;
142
                        SPDR = MM3_PERIOD_256 + MM3_Y_AXIS;
-
 
143
                        break;
-
 
144
                case MM3_Z_AXIS:
134
                else SPDR = MM3_PERIOD_256 + MM3_Z_AXIS; // MM3_Z_AXIS
145
                        SPDR = MM3_PERIOD_256 + MM3_Z_AXIS;
-
 
146
                        break;
-
 
147
                default:
-
 
148
                        MM3.AXIS = MM3_X_AXIS;
-
 
149
                        MM3.STATE = MM3_STATE_RESET;
-
 
150
                        return;
-
 
151
                }
135
 
152
 
136
                // DRDY line is not connected, therefore
153
                // DRDY line is not connected, therefore
137
                // wait before reading data back
154
                // wait before reading data back
138
                MM3.DRDY = SetDelay(8); // wait 8ms for data ready
155
                MM3.DRDY = SetDelay(8); // wait 8ms for data ready
139
                MM3.STATE = MM3_STATE_WAIT_DRDY;
156
                MM3.STATE = MM3_STATE_WAIT_DRDY;
140
                return;
157
                return;
141
 
158
 
142
        case MM3_STATE_WAIT_DRDY:
159
        case MM3_STATE_WAIT_DRDY:
143
                if (CheckDelay(MM3.DRDY))
160
                if (CheckDelay(MM3.DRDY))
144
                {
161
                {
145
                        // write something into SPDR to trigger data reading
162
                        // write something into SPDR to trigger data reading
146
                        SPDR = 0x00;
163
                        SPDR = 0x00;
147
                        MM3.STATE = MM3_STATE_DRDY;
164
                        MM3.STATE = MM3_STATE_DRDY;
148
                }
165
                }
149
                return;
166
                return;
150
        }
167
        }
151
}
168
}
152
 
169
 
153
 
170
 
154
/*********************************************/
171
/*********************************************/
155
/*  Interrupt SPI transfer complete          */
172
/*  Interrupt SPI transfer complete          */
156
/*********************************************/
173
/*********************************************/
157
ISR(SPI_STC_vect)
174
ISR(SPI_STC_vect)
158
{
175
{
159
        static int8_t tmp;
176
        static int8_t tmp;
160
        int16_t value;
177
        int16_t value;
161
 
178
 
162
        switch (MM3.STATE)
179
        switch (MM3.STATE)
163
        {
180
        {
164
        // 1st byte received
181
        // 1st byte received
165
        case MM3_STATE_DRDY:
182
        case MM3_STATE_DRDY:
166
                tmp = SPDR;     // store 1st byte
183
                tmp = SPDR;     // store 1st byte
167
                SPDR = 0x00;    // trigger transfer of 2nd byte
184
                SPDR = 0x00;    // trigger transfer of 2nd byte
168
                MM3.STATE = MM3_STATE_BYTE2;
185
                MM3.STATE = MM3_STATE_BYTE2;
169
                return;
186
                return;
170
 
187
 
171
        case MM3_STATE_BYTE2:           // 2nd byte received
188
        case MM3_STATE_BYTE2:           // 2nd byte received
172
                value = (int16_t)tmp;   // combine the 1st and 2nd byte to a word
189
                value = (int16_t)tmp;   // combine the 1st and 2nd byte to a word
173
                value <<= 8;            // shift 1st byte to MSB-Position
190
                value <<= 8;            // shift 1st byte to MSB-Position
174
                value |= (int16_t)SPDR; // add 2nd byte
191
                value |= (int16_t)SPDR; // add 2nd byte
175
 
192
 
176
                if(abs(value) < MAX_AXIS_VALUE)         // ignore spikes
193
                if(abs(value) < MAX_AXIS_VALUE)         // ignore spikes
177
                {
194
                {
178
                        switch (MM3.AXIS)
195
                        switch (MM3.AXIS)
179
                        {
196
                        {
180
                        case MM3_X_AXIS:
197
                        case MM3_X_AXIS:
181
                                MM3.x_axis = value;
198
                                MM3.x_axis = value;
182
                                MM3.AXIS = MM3_Y_AXIS;
199
                                MM3.AXIS = MM3_Y_AXIS;
183
                                break;
200
                                break;
184
                        case MM3_Y_AXIS:
201
                        case MM3_Y_AXIS:
185
                                MM3.y_axis = value;
202
                                MM3.y_axis = value;
186
                                MM3.AXIS = MM3_Z_AXIS;
203
                                MM3.AXIS = MM3_Z_AXIS;
187
                                break;
204
                                break;
188
                        case MM3_Z_AXIS:
205
                        case MM3_Z_AXIS:
189
                                MM3.z_axis = value;
206
                                MM3.z_axis = value;
190
                                MM3.AXIS = MM3_X_AXIS;
207
                                MM3.AXIS = MM3_X_AXIS;
191
                                break;
208
                                break;
192
                        default:
209
                        default:
193
                                MM3.AXIS = MM3_X_AXIS;
210
                                MM3.AXIS = MM3_X_AXIS;
194
                                break;
211
                                break;
195
                        }
212
                        }
196
                }
213
                }
197
                PORTC |= (1<<PORTC4); // deselect slave
214
                PORTC |= (1<<PORTC4); // deselect slave
198
                MM3.STATE = MM3_STATE_RESET;
215
                MM3.STATE = MM3_STATE_RESET;
-
 
216
                // Update timeout is called every 102.4 µs.
-
 
217
                // It takes 2 cycles to write a measurement data request for one axis and
-
 
218
                // at at least 8 ms / 102.4 µs = 79 cycles to read the requested data back.
-
 
219
                // I.e. 81 cycles * 102.4 µs = 8.3ms per axis.
-
 
220
                // The two function accessing the MM3 Data - MM3_Calibrate() and MM3_Heading() -
-
 
221
                // decremtent the MM3_Timeout every 100 ms.
-
 
222
                // incrementing the counter by 1 every 8.3 ms is sufficient to avoid a timeout.
-
 
223
                if ((MM3.x_axis != MM3.y_axis) || (MM3.x_axis != MM3.z_axis) || (MM3.y_axis != MM3.z_axis))
-
 
224
                {       // if all axis measurements give diffrent readings the data should be valid
-
 
225
                        if(MM3_Timeout < 20) MM3_Timeout++;
-
 
226
                }
-
 
227
                else // something is very strange here
-
 
228
                {
-
 
229
                        if(MM3_Timeout ) MM3_Timeout--;
-
 
230
                }
-
 
231
                return;
-
 
232
 
-
 
233
        default:
-
 
234
                return;
199
        }
235
        }
200
}
236
}
201
 
237
 
202
 
238
 
203
 
239
 
204
/*********************************************/
240
/*********************************************/
205
/*  Calibrate Compass                        */
241
/*  Calibrate Compass                        */
206
/*********************************************/
242
/*********************************************/
207
void MM3_Calibrate(void)
243
void MM3_Calibrate(void)
208
{
244
{
209
        int16_t x_min = 0, x_max = 0, y_min = 0, y_max = 0, z_min = 0, z_max = 0;
245
        int16_t x_min = 0, x_max = 0, y_min = 0, y_max = 0, z_min = 0, z_max = 0;
210
        uint8_t measurement = 50, beeper = 0;
246
        uint8_t measurement = 50, beeper = 0;
211
        uint16_t timer;
247
        uint16_t timer;
212
 
248
 
213
        GRN_ON;
249
        GRN_ON;
214
        ROT_OFF;
250
        ROT_OFF;
215
 
251
 
216
        // get maximum and minimum reading of all axis
252
        // get maximum and minimum reading of all axis
217
        while (measurement)
253
        while (measurement && !MM3_Timeout)
218
        {
254
        {
219
                if (MM3.x_axis > x_max) x_max = MM3.x_axis;
255
                if (MM3.x_axis > x_max) x_max = MM3.x_axis;
220
                else if (MM3.x_axis < x_min) x_min = MM3.x_axis;
256
                else if (MM3.x_axis < x_min) x_min = MM3.x_axis;
221
 
257
 
222
                if (MM3.y_axis > y_max) y_max = MM3.y_axis;
258
                if (MM3.y_axis > y_max) y_max = MM3.y_axis;
223
                else if (MM3.y_axis < y_min) y_min = MM3.y_axis;
259
                else if (MM3.y_axis < y_min) y_min = MM3.y_axis;
224
 
260
 
225
                if (MM3.z_axis > z_max) z_max = MM3.z_axis;
261
                if (MM3.z_axis > z_max) z_max = MM3.z_axis;
226
                else if (MM3.z_axis < z_min) z_min = MM3.z_axis;
262
                else if (MM3.z_axis < z_min) z_min = MM3.z_axis;
227
 
263
 
228
                if (!beeper)
264
                if (!beeper)
229
                {
265
                {
230
                        ROT_FLASH;
266
                        ROT_FLASH;
231
                        GRN_FLASH;
267
                        GRN_FLASH;
232
                        BeepTime = 50;
268
                        BeepTime = 50;
233
                        beeper = 50;
269
                        beeper = 50;
234
                }
270
                }
235
                beeper--;
271
                beeper--;
236
 
-
 
237
                // loop with period of 10 ms / 100 Hz
272
                // loop with period of 10 ms / 100 Hz
238
                timer = SetDelay(10);
273
                timer = SetDelay(10);
239
                while(!CheckDelay(timer));
274
                while(!CheckDelay(timer));
240
 
275
 
241
                // If thrust is less than 100, stop calibration with a delay of 0.5 seconds
276
                // If thrust is less than 100, stop calibration with a delay of 0.5 seconds
242
                if (PPM_in[ParamSet.ChannelAssignment[CH_THRUST]] < 100) measurement--;
277
                if (PPM_in[ParamSet.ChannelAssignment[CH_THRUST]] < 100) measurement--;
243
        }
278
        }
-
 
279
        if(!MM3_Timeout)
244
 
280
        {
245
        // Rage of all axis
281
                // Rage of all axis
246
        MM3_calib.X_range = (x_max - x_min);
282
                MM3_calib.X_range = (x_max - x_min);
247
        MM3_calib.Y_range = (y_max - y_min);
283
                MM3_calib.Y_range = (y_max - y_min);
248
        MM3_calib.Z_range = (z_max - z_min);
284
                MM3_calib.Z_range = (z_max - z_min);
249
 
285
 
250
        // Offset of all axis
286
                // Offset of all axis
251
        MM3_calib.X_off = (x_max + x_min) / 2;
287
                MM3_calib.X_off = (x_max + x_min) / 2;
252
        MM3_calib.Y_off = (y_max + y_min) / 2;
288
                MM3_calib.Y_off = (y_max + y_min) / 2;
253
        MM3_calib.Z_off = (z_max + z_min) / 2;
289
                MM3_calib.Z_off = (z_max + z_min) / 2;
254
 
290
 
255
        // save to EEProm
291
                // save to EEProm
256
        SetParamByte(PID_MM3_X_OFF,   (uint8_t)MM3_calib.X_off);
292
                SetParamByte(PID_MM3_X_OFF,   (uint8_t)MM3_calib.X_off);
257
        SetParamByte(PID_MM3_Y_OFF,   (uint8_t)MM3_calib.Y_off);
293
                SetParamByte(PID_MM3_Y_OFF,   (uint8_t)MM3_calib.Y_off);
258
        SetParamByte(PID_MM3_Z_OFF,   (uint8_t)MM3_calib.Z_off);
294
                SetParamByte(PID_MM3_Z_OFF,   (uint8_t)MM3_calib.Z_off);
259
        SetParamWord(PID_MM3_X_RANGE, (uint16_t)MM3_calib.X_range);
295
                SetParamWord(PID_MM3_X_RANGE, (uint16_t)MM3_calib.X_range);
260
        SetParamWord(PID_MM3_Y_RANGE, (uint16_t)MM3_calib.Y_range);
296
                SetParamWord(PID_MM3_Y_RANGE, (uint16_t)MM3_calib.Y_range);
261
        SetParamWord(PID_MM3_Z_RANGE, (uint16_t)MM3_calib.Z_range);
297
                SetParamWord(PID_MM3_Z_RANGE, (uint16_t)MM3_calib.Z_range);
-
 
298
        }
262
}
299
}
263
 
300
 
264
 
301
 
265
/*********************************************/
302
/*********************************************/
266
/*  Calculate north direction (heading)      */
303
/*  Calculate north direction (heading)      */
267
/*********************************************/
304
/*********************************************/
268
int16_t MM3_Heading(void)
305
int16_t MM3_Heading(void)
269
{
306
{
270
        int32_t sin_pitch, cos_pitch, sin_roll, cos_roll, sin_yaw, cos_yaw;
307
        int32_t sin_pitch, cos_pitch, sin_roll, cos_roll, sin_yaw, cos_yaw;
271
        int32_t  Hx, Hy, Hz, Hx_corr, Hy_corr;
308
        int32_t  Hx, Hy, Hz, Hx_corr, Hy_corr;
272
        int16_t angle;
309
        int16_t angle;
273
        uint16_t div_factor;
310
        uint16_t div_factor;
274
        int16_t heading;
311
        int16_t heading;
275
 
-
 
276
        // calibration factor for transforming Gyro Integrals to angular degrees
-
 
277
        div_factor = (uint16_t)ParamSet.UserParam3 * 8;
-
 
278
 
-
 
279
        // Offset correction and normalization (values of H are +/- 512)
-
 
280
        Hx = (((int32_t)(MM3.x_axis - MM3_calib.X_off)) * 1024) / (int32_t)MM3_calib.X_range;
-
 
281
        Hy = (((int32_t)(MM3.y_axis - MM3_calib.Y_off)) * 1024) / (int32_t)MM3_calib.Y_range;
-
 
282
        Hz = (((int32_t)(MM3.z_axis - MM3_calib.Z_off)) * 1024) / (int32_t)MM3_calib.Z_range;
-
 
283
 
-
 
284
        // Compensate the angle of the MM3-arrow to the head of the MK by a yaw rotation transformation
-
 
285
    // assuming the MM3 board is mounted parallel to the frame.
-
 
286
    // User Param 4 is used to define the positive angle from the MM3-arrow to the MK heading
-
 
287
    // in a top view counter clockwise direction.
-
 
288
    // North is in opposite direction of the small arrow on the MM3 board.
-
 
289
    // Therefore 180 deg must be added to that angle.
-
 
290
        angle = ((int16_t)ParamSet.UserParam4 + 180);
-
 
291
        // wrap angle to interval of 0°- 359°
-
 
292
        angle += 360;
-
 
293
        angle %= 360;
-
 
294
        sin_yaw = (int32_t)(c_sin_8192(angle));
-
 
295
        cos_yaw = (int32_t)(c_cos_8192(angle));
-
 
296
 
-
 
297
        Hx_corr = Hx;
-
 
298
        Hy_corr = Hy;
-
 
299
 
-
 
300
        // rotate
-
 
301
        Hx = (Hx_corr * cos_yaw - Hy_corr  * sin_yaw) / 8192;
-
 
302
        Hy = (Hx_corr * sin_yaw + Hy_corr  * cos_yaw) / 8192;
-
 
303
 
-
 
304
 
312
 
305
    // tilt compensation
313
        if (MM3_Timeout)
306
 
314
        {
307
        // calibration factor for transforming Gyro Integrals to angular degrees
315
                // calibration factor for transforming Gyro Integrals to angular degrees
308
        div_factor = (uint16_t)ParamSet.UserParam3 * 8;
-
 
309
 
-
 
310
        // calculate sinus cosinus of pitch and tilt angle
-
 
311
        angle = (IntegralPitch/div_factor);
-
 
312
        sin_pitch = (int32_t)(c_sin_8192(angle));
-
 
313
        cos_pitch = (int32_t)(c_cos_8192(angle));
-
 
314
 
-
 
315
        angle = (IntegralRoll/div_factor);
-
 
316
        sin_roll = (int32_t)(c_sin_8192(angle));
-
 
317
        cos_roll = (int32_t)(c_cos_8192(angle));
-
 
318
 
-
 
319
        Hx_corr = Hx * cos_pitch;
-
 
320
        Hx_corr -= Hz * sin_pitch;
-
 
321
        Hx_corr /= 8192;
-
 
322
 
-
 
323
        Hy_corr = Hy * cos_roll;
-
 
324
        Hy_corr += Hz * sin_roll;
-
 
325
        Hy_corr /= 8192;
-
 
326
 
-
 
327
        // calculate Heading
-
 
328
        heading = c_atan2(Hy_corr, Hx_corr);
-
 
329
 
-
 
330
    // atan returns angular range from -180 deg to 180 deg in counter clockwise notation
-
 
331
    // but the compass course is defined in a range from 0 deg to 360 deg clockwise notation.
-
 
332
        if (heading < 0) heading = -heading;
-
 
-
 
316
                div_factor = (uint16_t)ParamSet.UserParam3 * 8;
-
 
317
 
-
 
318
                // Offset correction and normalization (values of H are +/- 512)
-
 
319
                Hx = (((int32_t)(MM3.x_axis - MM3_calib.X_off)) * 1024) / (int32_t)MM3_calib.X_range;
-
 
320
                Hy = (((int32_t)(MM3.y_axis - MM3_calib.Y_off)) * 1024) / (int32_t)MM3_calib.Y_range;
-
 
321
                Hz = (((int32_t)(MM3.z_axis - MM3_calib.Z_off)) * 1024) / (int32_t)MM3_calib.Z_range;
-
 
322
 
-
 
323
                // Compensate the angle of the MM3-arrow to the head of the MK by a yaw rotation transformation
-
 
324
                // assuming the MM3 board is mounted parallel to the frame.
-
 
325
                // User Param 4 is used to define the positive angle from the MM3-arrow to the MK heading
-
 
326
                // in a top view counter clockwise direction.
-
 
327
                // North is in opposite direction of the small arrow on the MM3 board.
-
 
328
                // Therefore 180 deg must be added to that angle.
-
 
329
                angle = ((int16_t)ParamSet.UserParam4 + 180);
-
 
330
                // wrap angle to interval of 0°- 359°
-
 
331
                angle += 360;
-
 
332
                angle %= 360;
-
 
333
                sin_yaw = (int32_t)(c_sin_8192(angle));
-
 
334
                cos_yaw = (int32_t)(c_cos_8192(angle));
-
 
335
 
-
 
336
                Hx_corr = Hx;
-
 
337
                Hy_corr = Hy;
-
 
338
 
-
 
339
                // rotate
-
 
340
                Hx = (Hx_corr * cos_yaw - Hy_corr  * sin_yaw) / 8192;
-
 
341
                Hy = (Hx_corr * sin_yaw + Hy_corr  * cos_yaw) / 8192;
-
 
342
 
-
 
343
 
-
 
344
                // tilt compensation
-
 
345
 
-
 
346
                // calibration factor for transforming Gyro Integrals to angular degrees
-
 
347
                div_factor = (uint16_t)ParamSet.UserParam3 * 8;
-
 
348
 
-
 
349
                // calculate sinus cosinus of pitch and tilt angle
-
 
350
                angle = (IntegralPitch/div_factor);
-
 
351
                sin_pitch = (int32_t)(c_sin_8192(angle));
-
 
352
                cos_pitch = (int32_t)(c_cos_8192(angle));
-
 
353
 
-
 
354
                angle = (IntegralRoll/div_factor);
-
 
355
                sin_roll = (int32_t)(c_sin_8192(angle));
-
 
356
                cos_roll = (int32_t)(c_cos_8192(angle));
-
 
357
 
-
 
358
                Hx_corr = Hx * cos_pitch;
-
 
359
                Hx_corr -= Hz * sin_pitch;
-
 
360
                Hx_corr /= 8192;
-
 
361
 
-
 
362
                Hy_corr = Hy * cos_roll;
-
 
363
                Hy_corr += Hz * sin_roll;
-
 
364
                Hy_corr /= 8192;
-
 
365
 
-
 
366
                // calculate Heading
-
 
367
                heading = c_atan2(Hy_corr, Hx_corr);
-
 
368
 
-
 
369
                // atan returns angular range from -180 deg to 180 deg in counter clockwise notation
-
 
370
                // but the compass course is defined in a range from 0 deg to 360 deg clockwise notation.
-
 
371
                if (heading < 0) heading = -heading;
-
 
372
                else heading = 360 - heading;
-
 
373
        }
-
 
374
        else // MM3_Timeout = 0 i.e now new data from external board
-
 
375
        {
333
        else heading = 360 - heading;
376
                heading = -1;
334
 
377
        }
335
return heading;
378
return heading;
336
}
379
}
337
 
380