Subversion Repositories NaviCtrl

Rev

Rev 313 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
242 killagreg 1
/*#######################################################################################*/
2
/* !!! THIS IS NOT FREE SOFTWARE !!!                                                     */
3
/*#######################################################################################*/
4
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
5
// + Copyright (c) 2010 Ingo Busker, Holger Buss
6
// + Nur für den privaten Gebrauch / NON-COMMERCIAL USE ONLY
7
// + FOR NON COMMERCIAL USE ONLY
8
// + www.MikroKopter.com
9
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
10
// + Es gilt für das gesamte Projekt (Hardware, Software, Binärfiles, Sourcecode und Dokumentation),
11
// + dass eine Nutzung (auch auszugsweise) nur für den privaten (nicht-kommerziellen) Gebrauch zulässig ist.
12
// + Sollten direkte oder indirekte kommerzielle Absichten verfolgt werden, ist mit uns (info@mikrokopter.de) Kontakt
13
// + bzgl. der Nutzungsbedingungen aufzunehmen.
14
// + Eine kommerzielle Nutzung ist z.B.Verkauf von MikroKoptern, Bestückung und Verkauf von Platinen oder Bausätzen,
15
// + Verkauf von Luftbildaufnahmen, usw.
16
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
17
// + Werden Teile des Quellcodes (mit oder ohne Modifikation) weiterverwendet oder veröffentlicht,
18
// + unterliegen sie auch diesen Nutzungsbedingungen und diese Nutzungsbedingungen incl. Copyright müssen dann beiliegen
19
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
20
// + Sollte die Software (auch auszugesweise) oder sonstige Informationen des MikroKopter-Projekts
21
// + auf anderen Webseiten oder sonstigen Medien veröffentlicht werden, muss unsere Webseite "http://www.mikrokopter.de"
22
// + eindeutig als Ursprung verlinkt werden
23
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
24
// + Keine Gewähr auf Fehlerfreiheit, Vollständigkeit oder Funktion
25
// + Benutzung auf eigene Gefahr
26
// + Wir übernehmen keinerlei Haftung für direkte oder indirekte Personen- oder Sachschäden
27
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
28
// + Die Portierung oder Nutzung der Software (oder Teile davon) auf andere Systeme (ausser der Hardware von www.mikrokopter.de) ist nur
29
// + mit unserer Zustimmung zulässig
30
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
31
// + Die Funktion printf_P() unterliegt ihrer eigenen Lizenz und ist hiervon nicht betroffen
32
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
33
// + Redistributions of source code (with or without modifications) must retain the above copyright notice,
34
// + this list of conditions and the following disclaimer.
35
// +   * Neither the name of the copyright holders nor the names of contributors may be used to endorse or promote products derived
36
// +     from this software without specific prior written permission.
37
// +   * The use of this project (hardware, software, binary files, sources and documentation) is only permitted
38
// +     for non-commercial use (directly or indirectly)
39
// +     Commercial use (for excample: selling of MikroKopters, selling of PCBs, assembly, ...) is only permitted
40
// +     with our written permission
41
// +   * If sources or documentations are redistributet on other webpages, out webpage (http://www.MikroKopter.de) must be
42
// +     clearly linked as origin
43
// +   * porting the sources to other systems or using the software on other systems (except hardware from www.mikrokopter.de) is not allowed
44
//
45
// +  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
46
// +  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
47
// +  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
48
// +  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
49
// +  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
50
// +  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
51
// +  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
52
// +  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
53
// +  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
54
// +  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
55
// +  POSSIBILITY OF SUCH DAMAGE.
56
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
57
#include "91x_lib.h"
58
#include "compass.h"
59
#include "mk3mag.h"
253 killagreg 60
#include "ncmag.h"
292 killagreg 61
#include "spi_slave.h"
62
#include "mymath.h"
242 killagreg 63
#include "uart1.h"
254 killagreg 64
#include "fifo.h"
264 killagreg 65
#include "led.h"
292 killagreg 66
#include "main.h"
242 killagreg 67
 
254 killagreg 68
u8 CompassCalStateQueue[10];
69
fifo_t CompassCalcStateFiFo;
70
 
71
volatile s16vec_t MagVector;   // is written by mk3mag or ncmag implementation
72
volatile s16 Compass_Heading;   // is written by mk3mag or ncmag implementation
73
volatile u8  Compass_CalState; // is written by mk3mag or ncmag implementation
74
 
253 killagreg 75
#define COMPASS_NONE    0
76
#define COMPASS_MK3MAG  1
77
#define COMPASS_NCMAG   2
254 killagreg 78
u8 Compass_Device = COMPASS_NONE;
242 killagreg 79
 
80
void Compass_Init(void)
81
{
268 killagreg 82
        switch(Compass_Device)
264 killagreg 83
        {
268 killagreg 84
                case COMPASS_NONE:
85
                        UART1_PutString("\r\n Looking for compass");
86
                        if(Version_HW > 11)
87
                        {
88
                                if(      NCMAG_Init() ) Compass_Device = COMPASS_NCMAG;
89
                                else if( MK3MAG_Init()) Compass_Device = COMPASS_MK3MAG;
90
                        }
91
                        else
92
                        {
93
                                if(     MK3MAG_Init() ) Compass_Device = COMPASS_MK3MAG;
94
                                else if( NCMAG_Init() ) Compass_Device = COMPASS_NCMAG;
95
                        }
96
                        break;
311 killagreg 97
 
268 killagreg 98
                case COMPASS_NCMAG:
99
                        if( NCMAG_Init() )      Compass_Device = COMPASS_NCMAG;
311 killagreg 100
                        else                            Compass_Device = COMPASS_NONE;
268 killagreg 101
                        break;
102
 
103
                case COMPASS_MK3MAG:
104
                default:
105
                        // nothing to do
106
                        break;
107
 
264 killagreg 108
        }
254 killagreg 109
        fifo_init(&CompassCalcStateFiFo, CompassCalStateQueue, sizeof(CompassCalStateQueue), NO_ITLine, NO_ITLine);
242 killagreg 110
}
111
 
112
 
292 killagreg 113
void Compass_CalcHeading(void)
242 killagreg 114
{
292 killagreg 115
        if((UART_VersionInfo.HardwareError[0] & NC_ERROR0_SPI_RX) || Compass_CalState)
242 killagreg 116
        {
292 killagreg 117
                Compass_Heading = -1;
242 killagreg 118
        }
292 killagreg 119
        else // fc attitude is avialable and no compass calibration active
120
        {
121
                // calculate attitude correction
122
                // a float implementation takes too long
123
                s16 tmp, Hx, Hy;
124
                s32 sinnick, cosnick, sinroll, cosroll;
311 killagreg 125
 
126
                tmp = FromFlightCtrl.AngleNick/10; // in deg
292 killagreg 127
                sinnick = (s32)c_sin_8192(tmp);
128
                cosnick = (s32)c_cos_8192(tmp);
311 killagreg 129
                tmp = FromFlightCtrl.AngleRoll/10; // in deg
292 killagreg 130
                sinroll = (s32)c_sin_8192(tmp);
131
                cosroll = (s32)c_cos_8192(tmp);
311 killagreg 132
                // tbd. compensation signs and oriantation has to be fixed
292 killagreg 133
                Hx = (s16)((MagVector.Y * cosnick + MagVector.Z * sinnick)/8192L);
311 killagreg 134
                Hy = (s16)((MagVector.X * cosroll - MagVector.Z * sinroll)/8192L);
292 killagreg 135
                // calculate heading
293 killagreg 136
                tmp = (s16)(c_atan2_546(Hy, Hx)/546L);
292 killagreg 137
                if (tmp > 0) tmp = 360 - tmp;
138
                else tmp = -tmp;
139
                Compass_Heading = tmp;
140
        }
242 killagreg 141
}
142
 
292 killagreg 143
void Compass_Update(void)
242 killagreg 144
{
292 killagreg 145
        // check for new cal state
146
        Compass_UpdateCalState();
147
        // initiate new compass communication
254 killagreg 148
        switch(Compass_Device)
242 killagreg 149
        {
150
                case COMPASS_MK3MAG:
292 killagreg 151
                        MK3MAG_Update();
242 killagreg 152
                        break;
253 killagreg 153
                case COMPASS_NCMAG:
311 killagreg 154
                        NCMAG_Update();
242 killagreg 155
                default:
311 killagreg 156
                        break;
242 killagreg 157
        }
310 holgerb 158
        DebugOut.Analog[24] = MagVector.X;
159
        DebugOut.Analog[25] = MagVector.Y;
160
        DebugOut.Analog[26] = MagVector.Z;
242 killagreg 161
}
254 killagreg 162
 
163
// put cal state into fifo
164
void Compass_SetCalState(u8 CalState)
165
{
311 killagreg 166
        fifo_put(&CompassCalcStateFiFo, CalState);
254 killagreg 167
}
168
 
169
// get cal state from fifo
170
void Compass_UpdateCalState()
171
{
311 killagreg 172
        fifo_get(&CompassCalcStateFiFo, (u8*)&Compass_CalState);
254 killagreg 173
}
174