Subversion Repositories NaviCtrl

Rev

Rev 488 | Rev 492 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 488 Rev 489
Line 53... Line 53...
53
// + #### END OF LICENSING TERMS ####
53
// + #### END OF LICENSING TERMS ####
54
// + Note: For information on license extensions (e.g. commercial use), please contact us at info(@)hisystems.de.
54
// + Note: For information on license extensions (e.g. commercial use), please contact us at info(@)hisystems.de.
55
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
55
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
56
#include <math.h>
56
#include <math.h>
57
#include <stdio.h>
57
#include <stdio.h>
-
 
58
#include <stdlib.h>
58
#include <string.h>
59
#include <string.h>
59
#include "91x_lib.h"
60
#include "91x_lib.h"
60
#include "ncmag.h"
61
#include "ncmag.h"
61
#include "i2c1.h"
-
 
62
#include "i2c0.h"
62
#include "i2c.h"
63
 
-
 
64
#include "timer1.h"
63
#include "timer1.h"
65
#include "led.h"
64
#include "led.h"
66
#include "uart1.h"
65
#include "uart1.h"
67
#include "eeprom.h"
66
#include "eeprom.h"
68
#include "mymath.h"
67
#include "mymath.h"
Line 70... Line 69...
70
#include "spi_slave.h"
69
#include "spi_slave.h"
Line 71... Line 70...
71
 
70
 
72
u8 NCMAG_Present = 0;
71
u8 NCMAG_Present = 0;
Line 73... Line -...
73
u8 NCMAG_IsCalibrated = 0;
-
 
74
 
-
 
75
u8 I2C_CompassPort = 1;
-
 
76
u8 ExtCompassOrientation = 0;
-
 
77
 
-
 
78
u8 *I2C_BufferPnt;
-
 
79
u8 *I2C_ErrorPnt;
-
 
80
I2C_TransmissionFunc_t                          I2C_TransmissionFunc;
-
 
81
I2C_LockBufferFunc_t                            I2C_LockBufferFunc;
-
 
Line 82... Line 72...
82
I2C_WaitForEndOfTransmissionFunc_t      I2C_WaitForEndOfTransmissionFunc;
72
u8 NCMAG_IsCalibrated = 0;
83
 
73
 
84
 
74
 
85
// supported magnetic sensor types
75
// supported magnetic sensor types
86
#define TYPE_NONE                       0
76
#define TYPE_NONE                       0
Line 87... Line 77...
87
#define TYPE_HMC5843            1
77
#define TYPE_HMC5843            1
-
 
78
#define TYPE_LSM303DLH          2
-
 
79
#define TYPE_LSM303DLM          3
-
 
80
 
-
 
81
u8 NCMAG_SensorType = TYPE_NONE;
-
 
82
u8 NCMAG_Orientation = 0; // 0 means unknown!
-
 
83
 
-
 
84
// two calibrtion sets for extern and intern sensor
-
 
85
#define EEPROM_ADR_MAG_CALIBRATION_INTERN       50
-
 
86
#define EEPROM_ADR_MAG_CALIBRATION_EXTERN   70
-
 
87
 
-
 
88
#define CALIBRATION_VERSION                     1
-
 
89
#define MAG_CALIBRATION_COMPATIBLE              0xA2
-
 
90
 
-
 
91
#define NCMAG_MIN_RAWVALUE -2047
-
 
92
#define NCMAG_MAX_RAWVALUE  2047
-
 
93
#define NCMAG_INVALID_DATA -4096
-
 
94
 
-
 
95
typedef struct
-
 
96
{
-
 
97
        s16 Range;
-
 
98
        s16 Offset;
-
 
99
} __attribute__((packed)) Scaling_t;
-
 
100
 
-
 
101
typedef struct
-
 
102
{
-
 
103
        Scaling_t MagX;
-
 
104
        Scaling_t MagY;
Line 88... Line 105...
88
#define TYPE_LSM303DLH          2
105
        Scaling_t MagZ;
89
#define TYPE_LSM303DLM          3
106
        u8 Version;
90
 
107
        u8 crc;
Line 206... Line 223...
206
        u8 mode;
223
        u8 mode;
207
} __attribute__((packed)) MagConfig_t;
224
} __attribute__((packed)) MagConfig_t;
Line 208... Line 225...
208
 
225
 
Line 209... Line -...
209
volatile MagConfig_t MagConfig;
-
 
210
 
-
 
211
 
-
 
212
 
-
 
213
 
226
volatile MagConfig_t MagConfig;
214
 
227
 
215
// self test value
228
// self test value
216
#define LSM303DLH_TEST_XSCALE   495
229
#define LSM303DLH_TEST_XSCALE   495
217
#define LSM303DLH_TEST_YSCALE   495
230
#define LSM303DLH_TEST_YSCALE   495
Line 284... Line 297...
284
        u8 ctrl_5;
297
        u8 ctrl_5;
285
} __attribute__((packed)) AccConfig_t;
298
} __attribute__((packed)) AccConfig_t;
Line 286... Line 299...
286
 
299
 
Line 287... Line 300...
287
volatile AccConfig_t AccConfig;
300
volatile AccConfig_t AccConfig;
-
 
301
 
288
 
302
// write calibration data for external and internal sensor seperately
289
u8 NCMag_CalibrationWrite(u8 intern) // two calibrtion sets for extern and intern sensor
303
u8 NCMag_CalibrationWrite(I2C_TypeDef* I2Cx)
290
{
304
{
291
        u16 address;
305
        u16 address;
292
        u8 i, crc = MAG_CALIBRATION_COMPATIBLE;
306
        u8 i = 0, crc = MAG_CALIBRATION_COMPATIBLE;
293
        EEPROM_Result_t eres;
-
 
Line 294... Line 307...
294
        u8 *pBuff = (u8*)&Calibration;
307
        EEPROM_Result_t eres;
295
        Calibration.Version = CALIBRATION_VERSION;
-
 
296
 
308
        u8 *pBuff = (u8*)&Calibration;
297
        if(intern == I2C_INTERN_1) address = EEPROM_ADR_MAG_CALIBRATION_INTERN;
309
 
298
        else
310
        if (I2Cx == NCMAG_PORT_EXTERN)
299
        {
311
        {
-
 
312
                address = EEPROM_ADR_MAG_CALIBRATION_EXTERN;
-
 
313
                Calibration.Version = CALIBRATION_VERSION + (NCMAG_Orientation<<4);;
-
 
314
        }
-
 
315
        else if (I2Cx == NCMAG_PORT_INTERN)
-
 
316
        {
-
 
317
                address = EEPROM_ADR_MAG_CALIBRATION_INTERN;
-
 
318
                Calibration.Version = CALIBRATION_VERSION;
300
         address = EEPROM_ADR_MAG_CALIBRATION_EXTERN;
319
        }
301
         Calibration.Version = CALIBRATION_VERSION + ExtCompassOrientation * 16;
320
        else return(i);
302
        }
321
 
303
        for(i = 0; i<(sizeof(Calibration)-1); i++)
322
        for(i = 0; i<(sizeof(Calibration)-1); i++)
304
        {
323
        {
Line 309... Line 328...
309
        if(EEPROM_SUCCESS == eres) i = 1;
328
        if(EEPROM_SUCCESS == eres) i = 1;
310
        else i = 0;
329
        else i = 0;
311
        return(i);     
330
        return(i);
312
}
331
}
Line 313... Line 332...
313
 
332
 
-
 
333
// read calibration data for external and internal sensor seperately
314
u8 NCMag_CalibrationRead(u8 intern)     // two calibrtion sets for extern and intern sensor
334
u8 NCMag_CalibrationRead(I2C_TypeDef* I2Cx)
-
 
335
{
315
{
336
        u8 address;
316
        u8 i, crc = MAG_CALIBRATION_COMPATIBLE;
337
        u8 i = 0, crc = MAG_CALIBRATION_COMPATIBLE;
317
        u8 *pBuff = (u8*)&Calibration;
-
 
Line 318... Line 338...
318
        u16 address;
338
        u8 *pBuff = (u8*)&Calibration;
319
 
339
 
-
 
340
        if (I2Cx == NCMAG_PORT_EXTERN)          address = EEPROM_ADR_MAG_CALIBRATION_EXTERN;
Line 320... Line 341...
320
        if(intern == I2C_INTERN_1) address = EEPROM_ADR_MAG_CALIBRATION_INTERN;
341
        else if (I2Cx == NCMAG_PORT_INTERN) address = EEPROM_ADR_MAG_CALIBRATION_INTERN;
321
        else address = EEPROM_ADR_MAG_CALIBRATION_EXTERN;
342
        else return(0);
322
 
343
 
323
        if(EEPROM_SUCCESS == EEPROM_ReadBlock(address, pBuff, sizeof(Calibration)))
344
        if(EEPROM_SUCCESS == EEPROM_ReadBlock(address, pBuff, sizeof(Calibration)))
324
        {
345
        {
325
                for(i = 0; i<(sizeof(Calibration)-1); i++)
346
                for(i = 0; i<(sizeof(Calibration)-1); i++)
326
                {
347
                {
327
                        crc += pBuff[i];        
348
                        crc += pBuff[i];
328
                }
349
                }
329
                crc = ~crc;
350
                crc = ~crc;
330
                if(Calibration.crc != crc) return(0); // crc mismatch
351
                if(Calibration.crc != crc) return(0); // crc mismatch
331
                if((Calibration.Version & 0x0f) == CALIBRATION_VERSION) return(1);
352
                if((Calibration.Version & 0x0F) == CALIBRATION_VERSION) return(1);
Line 332... Line 353...
332
        }
353
        }
333
        return(0);
354
        return(0);
334
}
355
}
335
 
356
 
336
 
357
 
337
void NCMAG_Calibrate(void)
358
void NCMAG_Calibrate(void)
338
{
359
{
339
        u8 msg[64];
360
        u8 msg[64];
Line 340... Line 361...
340
        static u8 speak = 0;
361
        static u8 speak = 0;
Line 359... Line 380...
359
                        Ymax = -10000;
380
                        Ymax = -10000;
360
                        Zmin =  10000;
381
                        Zmin =  10000;
361
                        Zmax = -10000;
382
                        Zmax = -10000;
362
                        speak = 1;
383
                        speak = 1;
363
                        CompassValueErrorCount = 0;
384
                        CompassValueErrorCount = 0;
364
                        if(Compass_CalState != OldCalState) // avoid continously writing of eeprom!
385
                        if(Compass_CalState != OldCalState) // only once per state
365
                        {
386
                        {
366
                         UART1_PutString("\r\nStarting compass calibration");
387
                                UART1_PutString("\r\nStarting compass calibration");
367
                         if(I2C_CompassPort == I2C_EXTERN_0)
388
                                if(Compass_I2CPort == NCMAG_PORT_EXTERN)
368
                         {
389
                                {
369
                          if(!ExtCompassOrientation) ExtCompassOrientation = GetExtCompassOrientation();
390
                                        if(!NCMAG_Orientation) NCMAG_Orientation = NCMAG_GetOrientationFromAcc();
370
                          UART1_PutString(" - External sensor ");
391
                                        UART1_PutString(" - External sensor ");
371
                          sprintf(msg, "with orientation: %d ",ExtCompassOrientation);
392
                                        sprintf(msg, "with orientation: %d ", NCMAG_Orientation);
372
                          UART1_PutString(msg);
393
                                        UART1_PutString(msg);
373
                         }
394
                                }
374
                         else UART1_PutString(" - Internal sensor ");
395
                                else UART1_PutString(" - Internal sensor ");
375
                        }
396
                        }
376
                        break;
397
                        break;
-
 
398
 
377
                case 2: // 2nd step of calibration
399
                case 2: // 2nd step of calibration
378
                        // find Min and Max of the X- and Y-Sensors during rotation in the horizontal plane
400
                        // find Min and Max of the X- and Y-Sensors during rotation in the horizontal plane
379
                        if(X < Xmin)            { Xmin = X; BeepTime = 20;}
401
                        if(X < Xmin)            { Xmin = X; BeepTime = 20;}
380
                        else if(X > Xmax)       { Xmax = X; BeepTime = 20;}
402
                        else if(X > Xmax)       { Xmax = X; BeepTime = 20;}
381
                        if(Y < Ymin)            { Ymin = Y; BeepTime = 60;}
403
                        if(Y < Ymin)            { Ymin = Y; BeepTime = 60;}
382
                        else if(Y > Ymax)       { Ymax = Y; BeepTime = 60;}
404
                        else if(Y > Ymax)       { Ymax = Y; BeepTime = 60;}
383
                        if(Z < Zmin)        { Zmin = Z; } // silent
405
                        if(Z < Zmin)        { Zmin = Z; } // silent
384
                        else if(Z > Zmax)   { Zmax = Z; }
406
                        else if(Z > Zmax)   { Zmax = Z; }
385
 
-
 
386
                        if(speak) SpeakHoTT = SPEAK_CALIBRATE; speak = 0;
407
                        if(speak) SpeakHoTT = SPEAK_CALIBRATE; speak = 0;
387
                        break;
408
                        break;
Line 388... Line 409...
388
 
409
 
389
                case 3: // 3rd step of calibration
410
                case 3: // 3rd step of calibration
Line 393... Line 414...
393
 
414
 
394
                case 4:
415
                case 4:
395
                        // find Min and Max of the Z-Sensor
416
                        // find Min and Max of the Z-Sensor
396
                        if(Z < Zmin2)     { Zmin2 = Z; BeepTime = 80;}
417
                        if(Z < Zmin2)           { Zmin2 = Z; BeepTime = 80;}
397
                        else if(Z > Zmax2) { Zmax2 = Z; BeepTime = 80;}
-
 
398
                       
418
                        else if(Z > Zmax2)      { Zmax2 = Z; BeepTime = 80;}
399
                        if(X < Xmin)            { Xmin = X; BeepTime = 20;}
419
                        if(X < Xmin)            { Xmin = X; BeepTime = 20;}
400
                        else if(X > Xmax)       { Xmax = X; BeepTime = 20;}
420
                        else if(X > Xmax)       { Xmax = X; BeepTime = 20;}
401
                        if(Y < Ymin)            { Ymin = Y; BeepTime = 60;}
421
                        if(Y < Ymin)            { Ymin = Y; BeepTime = 60;}
402
                        else if(Y > Ymax)       { Ymax = Y; BeepTime = 60;}
-
 
403
 
422
                        else if(Y > Ymax)       { Ymax = Y; BeepTime = 60;}
404
                        if(speak) SpeakHoTT = SPEAK_CALIBRATE; speak = 0;
423
                        if(speak) SpeakHoTT = SPEAK_CALIBRATE; speak = 0;
Line 405... Line 424...
405
                        break;
424
                        break;
406
               
425
 
Line 427... Line 446...
427
                                  sprintf(msg, "Earth field on your location should be: %iuT\r\n",EarthMagneticStrengthTheoretic);
446
                                        sprintf(msg, "Earth field on your location should be: %iuT\r\n",EarthMagneticStrengthTheoretic);
428
                                  UART1_PutString(msg);
447
                                        UART1_PutString(msg);
429
                                 }
448
                                }
430
                            else UART1_PutString("without GPS\n\r");
449
                            else UART1_PutString("without GPS\n\r");
Line 431... Line 450...
431
 
450
 
432
                                if(Zmin2 < Zmin)          { Zmin = Zmin2; }
451
                                if(Zmin2 < Zmin) Zmin = Zmin2;
433
                                else if(Zmax2 > Zmax) { Zmax = Zmax2; }
-
 
434
 
452
                                if(Zmax2 > Zmax) Zmax = Zmax2;
435
                                Calibration.MagX.Range = Xmax - Xmin;
453
                                Calibration.MagX.Range = Xmax - Xmin;
436
                                Calibration.MagX.Offset = (Xmin + Xmax) / 2;
454
                                Calibration.MagX.Offset = (Xmin + Xmax) / 2;
437
                                Calibration.MagY.Range = Ymax - Ymin;
455
                                Calibration.MagY.Range = Ymax - Ymin;
438
                                Calibration.MagY.Offset = (Ymin + Ymax) / 2;
456
                                Calibration.MagY.Offset = (Ymin + Ymax) / 2;
Line 445... Line 463...
445
 
463
 
446
                                }
464
                                }
447
                                else
465
                                else
448
                                if((Calibration.MagX.Range > MinCalibration) && (Calibration.MagY.Range > MinCalibration) && (Calibration.MagZ.Range > MinCalibration))
466
                                if((Calibration.MagX.Range > MinCalibration) && (Calibration.MagY.Range > MinCalibration) && (Calibration.MagZ.Range > MinCalibration))
449
                                {
467
                                {
450
                                        NCMAG_IsCalibrated = NCMag_CalibrationWrite(I2C_CompassPort);
468
                                        NCMAG_IsCalibrated = NCMag_CalibrationWrite(Compass_I2CPort);
451
                                        BeepTime = 2500;
469
                                        BeepTime = 2500;
452
                                        UART1_PutString("\r\n-> Calibration okay <-\n\r");
470
                                        UART1_PutString("\r\n-> Calibration okay <-\n\r");
453
SpeakHoTT = SPEAK_MIKROKOPTER;
471
                                        SpeakHoTT = SPEAK_MIKROKOPTER;
454
                                }
472
                                }
Line 460... Line 478...
460
                                    if(Calibration.MagY.Range < MinCalibration) UART1_PutString("Y! ");
478
                                    if(Calibration.MagY.Range < MinCalibration) UART1_PutString("Y! ");
461
                                    if(Calibration.MagZ.Range < MinCalibration) UART1_PutString("Z! ");
479
                                    if(Calibration.MagZ.Range < MinCalibration) UART1_PutString("Z! ");
462
                                        UART1_PutString("\r\n");
480
                                        UART1_PutString("\r\n");
Line 463... Line 481...
463
 
481
 
464
                                        // restore old calibration data from eeprom
482
                                        // restore old calibration data from eeprom
465
                                        NCMAG_IsCalibrated = NCMag_CalibrationRead(I2C_CompassPort);
483
                                        NCMAG_IsCalibrated = NCMag_CalibrationRead(Compass_I2CPort);
466
                                }
484
                                }
467
                                        sprintf(msg, "X: (%i - %i = %i)\r\n",Xmax,Xmin,Xmax - Xmin);
485
                                        sprintf(msg, "X: (%i - %i = %i)\r\n",Xmax,Xmin,Xmax - Xmin);
468
                                        UART1_PutString(msg);
486
                                        UART1_PutString(msg);
469
                                        sprintf(msg, "Y: (%i - %i = %i)\r\n",Ymax,Ymin,Ymax - Ymin);
487
                                        sprintf(msg, "Y: (%i - %i = %i)\r\n",Ymax,Ymin,Ymax - Ymin);
Line 527... Line 545...
527
                        if(NCMAG_SensorType == TYPE_LSM303DLM)  Y = raw; // here Z and Y are exchanged
545
                        if(NCMAG_SensorType == TYPE_LSM303DLM)  Y = raw; // here Z and Y are exchanged
528
                        else                                                                    Z = raw;
546
                        else                                                                    Z = raw;
529
                }
547
                }
530
                else if(CompassValueErrorCount < 35) CompassValueErrorCount++; // invalid data
548
                else if(CompassValueErrorCount < 35) CompassValueErrorCount++; // invalid data
Line -... Line 549...
-
 
549
 
531
 
550
                // correct compass orientation
532
          switch(ExtCompassOrientation)
551
                switch(NCMAG_Orientation)
533
                {
552
                {
534
                 case 0:
553
                        case 0:
535
                 case 1:
554
                        case 1:
-
 
555
                        default:
536
                 default:
556
                                // 1:1 Mapping
537
                                MagRawVector.X = X;
557
                                MagRawVector.X = X;
538
                                MagRawVector.Y = Y;
558
                                MagRawVector.Y = Y;
539
                                MagRawVector.Z = Z;
559
                                MagRawVector.Z = Z;
540
                                break;
560
                                break;
Line 581... Line 601...
581
                Compass_CalcHeading();
601
                Compass_CalcHeading();
582
        }
602
        }
583
}
603
}
584
// rx data handler  for acceleration raw data
604
// rx data handler  for acceleration raw data
585
void NCMAG_UpdateAccVector(u8* pRxBuffer, u8 RxBufferSize)
605
void NCMAG_UpdateAccVector(u8* pRxBuffer, u8 RxBufferSize)
586
{       // if number of byte are matching
606
{       // if number of bytes are matching
587
        if(RxBufferSize == sizeof(AccRawVector) )
607
        if(RxBufferSize == sizeof(AccRawVector) )
588
        {
608
        {
-
 
609
                // copy from I2C buffer
589
                memcpy((u8*)&AccRawVector, pRxBuffer,sizeof(AccRawVector));
610
                memcpy((u8*)&AccRawVector, pRxBuffer,sizeof(AccRawVector));
-
 
611
                // scale and update Acc Vector, at the moment simply 1:1
-
 
612
                memcpy((u8*)&AccVector, (u8*)&AccRawVector,sizeof(AccRawVector));
590
        }
613
        }
591
}
614
}
-
 
615
// rx data handler for reading magnetic sensor configuration
-
 
616
void NCMAG_UpdateMagConfig(u8* pRxBuffer, u8 RxBufferSize)
-
 
617
{       // if number of byte are matching
-
 
618
        if(RxBufferSize == sizeof(MagConfig) )
-
 
619
        {
-
 
620
                memcpy((u8*)(&MagConfig), pRxBuffer, sizeof(MagConfig));
-
 
621
        }
592
 
622
}
-
 
623
// rx data handler for reading acceleration sensor configuration
-
 
624
void NCMAG_UpdateAccConfig(u8* pRxBuffer, u8 RxBufferSize)
593
u8 GetExtCompassOrientation(void)
625
{       // if number of byte are matching
-
 
626
        if(RxBufferSize == sizeof(AccConfig) )
594
{
627
        {
595
        if(I2C_CompassPort != I2C_EXTERN_0) return(0);
628
                memcpy((u8*)&AccConfig, pRxBuffer, sizeof(AccConfig));
-
 
629
        }
-
 
630
}
-
 
631
//----------------------------------------------------------------------
Line -... Line 632...
-
 
632
 
-
 
633
u8 NCMAG_GetOrientationFromAcc(void)
-
 
634
{
-
 
635
        // only if external compass connected
-
 
636
        if(Compass_I2CPort != NCMAG_PORT_EXTERN) return(0);
596
 
637
         // MK must not be tilted
597
        if((abs(FromFlightCtrl.AngleNick) > 300) || (abs(FromFlightCtrl.AngleRoll) > 300))
638
        if((abs(FromFlightCtrl.AngleNick) > 300) || (abs(FromFlightCtrl.AngleRoll) > 300))
598
         {
639
        {
599
//        UART1_PutString("\r\nTilted"); 
640
//              UART1_PutString("\r\nTilted");
600
          return(0);
641
                return(0);
-
 
642
        }
601
         }
643
        // select orientation
602
        if(AccRawVector.Z >  3300) return(1); // Flach - Bestückung oben - Pfeil nach vorn
644
        if(AccRawVector.Z >  3300) return(1); // Flach - Bestückung oben - Pfeil nach vorn
603
        else
645
        else
604
        if(AccRawVector.Z < -3300) return(2); // Flach - Bestückung unten - Pfeil nach vorn
646
        if(AccRawVector.Z < -3300) return(2); // Flach - Bestückung unten - Pfeil nach vorn
605
        else
647
        else
Line 611... Line 653...
611
        else
653
        else
612
        if(AccRawVector.Y < -3300) return(6); // Stehend - Pfeil nach unten  - 'front' nach vorn
654
        if(AccRawVector.Y < -3300) return(6); // Stehend - Pfeil nach unten  - 'front' nach vorn
613
        return(0);
655
        return(0);
614
}
656
}
Line 615... Line -...
615
 
-
 
616
// rx data handler for reading magnetic sensor configuration
-
 
617
void NCMAG_UpdateMagConfig(u8* pRxBuffer, u8 RxBufferSize)
-
 
618
{       // if number of byte are matching
-
 
619
        if(RxBufferSize == sizeof(MagConfig) )
-
 
620
        {
-
 
621
                memcpy((u8*)(&MagConfig), pRxBuffer, sizeof(MagConfig));
-
 
622
        }
-
 
623
}
-
 
624
// rx data handler for reading acceleration sensor configuration
-
 
625
void NCMAG_UpdateAccConfig(u8* pRxBuffer, u8 RxBufferSize)
-
 
626
{       // if number of byte are matching
-
 
627
        if(RxBufferSize == sizeof(AccConfig) )
-
 
628
        {
-
 
629
                memcpy((u8*)&AccConfig, pRxBuffer, sizeof(AccConfig));
-
 
630
        }
-
 
631
}
-
 
632
//----------------------------------------------------------------------
-
 
633
 
-
 
634
 
657
 
635
// ---------------------------------------------------------------------
658
// ---------------------------------------------------------------------
636
u8 NCMAG_SetMagConfig(void)
659
u8 NCMAG_SetMagConfig(void)
637
{
660
{
-
 
661
        u8 retval = 0;
638
        u8 retval = 0;
662
 
639
        // try to catch the i2c buffer within 100 ms timeout
663
        // try to catch the i2c buffer within 100 ms timeout
640
        if(I2C_LockBufferFunc(100))
664
        if(I2CBus_LockBuffer(Compass_I2CPort, 100))
641
        {
665
        {
-
 
666
                u8 TxBytes = 0;
-
 
667
                u8 TxData[sizeof(MagConfig) + 3];
642
                u8 TxBytes = 0;
668
 
643
                I2C_BufferPnt[TxBytes++] = REG_MAG_CRA;        
669
                TxData[TxBytes++] = REG_MAG_CRA;
644
                memcpy((u8*)(&I2C_BufferPnt[TxBytes]), (u8*)&MagConfig, sizeof(MagConfig));
670
                memcpy(&TxData[TxBytes], (u8*)&MagConfig, sizeof(MagConfig));
645
                TxBytes += sizeof(MagConfig);
671
                TxBytes += sizeof(MagConfig);
646
                if(I2C_TransmissionFunc(MAG_SLAVE_ADDRESS, TxBytes, 0, 0))
672
                if(I2CBus_Transmission(Compass_I2CPort, MAG_SLAVE_ADDRESS, TxData, TxBytes, 0, 0))
647
                {
673
                {
648
                        if(I2C_WaitForEndOfTransmissionFunc(100))
674
                        if(I2CBus_WaitForEndOfTransmission(Compass_I2CPort, 100))
649
                        {
675
                        {
650
                                if(*I2C_ErrorPnt == I2C_ERROR_NONE) retval = 1;
676
                                if(I2CBus(Compass_I2CPort)->Error == I2C_ERROR_NONE) retval = 1;
651
                        }
677
                        }
652
                }
678
                }
653
        }
679
        }
654
        return(retval);        
680
        return(retval);
Line 657... Line 683...
657
// ----------------------------------------------------------------------------------------
683
// ----------------------------------------------------------------------------------------
658
u8 NCMAG_GetMagConfig(void)
684
u8 NCMAG_GetMagConfig(void)
659
{
685
{
660
        u8 retval = 0;
686
        u8 retval = 0;
661
        // try to catch the i2c buffer within 100 ms timeout
687
        // try to catch the i2c buffer within 100 ms timeout
662
        if(I2C_LockBufferFunc(100))
688
        if(I2CBus_LockBuffer(Compass_I2CPort, 100))
663
        {
689
        {
664
                u8 TxBytes = 0;
690
                u8 TxBytes = 0;
-
 
691
                u8 TxData[3];
665
                I2C_BufferPnt[TxBytes++] = REG_MAG_CRA;
692
                TxData[TxBytes++] = REG_MAG_CRA;
666
                if(I2C_TransmissionFunc(MAG_SLAVE_ADDRESS, TxBytes, &NCMAG_UpdateMagConfig, sizeof(MagConfig)))
693
                if(I2CBus_Transmission(Compass_I2CPort, MAG_SLAVE_ADDRESS, TxData, TxBytes, &NCMAG_UpdateMagConfig, sizeof(MagConfig)))
667
                {
694
                {
668
                        if(I2C_WaitForEndOfTransmissionFunc(100))
695
                        if(I2CBus_WaitForEndOfTransmission(Compass_I2CPort, 100))
669
                        {
696
                        {
670
                                if(*I2C_ErrorPnt == I2C_ERROR_NONE) retval = 1;
697
                                if(I2CBus(Compass_I2CPort)->Error == I2C_ERROR_NONE) retval = 1;
671
                        }
698
                        }
672
                }
699
                }
673
        }
700
        }
674
        return(retval);        
701
        return(retval);
675
}
702
}
Line 676... Line 703...
676
 
703
 
677
// ----------------------------------------------------------------------------------------
704
// ----------------------------------------------------------------------------------------
678
u8 NCMAG_SetAccConfig(void)
705
u8 NCMAG_SetAccConfig(void)
679
{
706
{
680
        u8 retval = 0;
707
        u8 retval = 0;
681
        // try to catch the i2c buffer within 100 ms timeout
708
        // try to catch the i2c buffer within 50 ms timeout
682
        if(I2C_LockBufferFunc(50))
709
        if(I2CBus_LockBuffer(Compass_I2CPort, 50))
683
        {
710
        {
-
 
711
                u8 TxBytes = 0;
684
                u8 TxBytes = 0;
712
                u8 TxData[sizeof(AccConfig) + 3];
685
                I2C_BufferPnt[TxBytes++] = REG_ACC_CTRL1|REG_ACC_MASK_AUTOINCREMENT;    
713
                TxData[TxBytes++] = REG_ACC_CTRL1|REG_ACC_MASK_AUTOINCREMENT;
686
                memcpy((u8*)(&I2C_BufferPnt[TxBytes]), (u8*)&AccConfig, sizeof(AccConfig));
714
                memcpy(&TxData[TxBytes], (u8*)&AccConfig, sizeof(AccConfig));
687
                TxBytes += sizeof(AccConfig);
715
                TxBytes += sizeof(AccConfig);
688
                if(I2C_TransmissionFunc(ACC_SLAVE_ADDRESS, TxBytes, 0, 0))
716
                if(I2CBus_Transmission(Compass_I2CPort, ACC_SLAVE_ADDRESS, TxData, TxBytes, 0, 0))
689
                {
717
                {
690
                        if(I2C_WaitForEndOfTransmissionFunc(50))
718
                        if(I2CBus_WaitForEndOfTransmission(Compass_I2CPort, 50))
691
                        {
719
                        {
692
                                if(*I2C_ErrorPnt == I2C_ERROR_NONE) retval = 1;
720
                                if(I2CBus(Compass_I2CPort)->Error == I2C_ERROR_NONE) retval = 1;
693
                        }
721
                        }
694
                }
722
                }
695
        }
723
        }
696
        return(retval);        
724
        return(retval);
Line 699... Line 727...
699
// ----------------------------------------------------------------------------------------
727
// ----------------------------------------------------------------------------------------
700
u8 NCMAG_GetAccConfig(void)
728
u8 NCMAG_GetAccConfig(void)
701
{
729
{
702
        u8 retval = 0;
730
        u8 retval = 0;
703
        // try to catch the i2c buffer within 100 ms timeout
731
        // try to catch the i2c buffer within 100 ms timeout
704
        if(I2C_LockBufferFunc(100))
732
        if(I2CBus_LockBuffer(Compass_I2CPort, 100))
705
        {
733
        {
706
                u8 TxBytes = 0;
734
                u8 TxBytes = 0;
-
 
735
                u8 TxData[3];
707
                I2C_BufferPnt[TxBytes++] = REG_ACC_CTRL1|REG_ACC_MASK_AUTOINCREMENT;
736
                TxData[TxBytes++] = REG_ACC_CTRL1|REG_ACC_MASK_AUTOINCREMENT;
708
                if(I2C_TransmissionFunc(ACC_SLAVE_ADDRESS, TxBytes, &NCMAG_UpdateAccConfig, sizeof(AccConfig)))
737
                if(I2CBus_Transmission(Compass_I2CPort, ACC_SLAVE_ADDRESS, TxData, TxBytes, &NCMAG_UpdateAccConfig, sizeof(AccConfig)))
709
                {
738
                {
710
                        if(I2C_WaitForEndOfTransmissionFunc(100))
739
                        if(I2CBus_WaitForEndOfTransmission(Compass_I2CPort, 100))
711
                        {
740
                        {
712
                                if(*I2C_ErrorPnt == I2C_ERROR_NONE) retval = 1;
741
                                if(I2CBus(Compass_I2CPort)->Error == I2C_ERROR_NONE) retval = 1;
713
                        }
742
                        }
714
                }
743
                }
715
        }
744
        }
716
        return(retval);        
745
        return(retval);
717
}
746
}
Line 719... Line 748...
719
// ----------------------------------------------------------------------------------------
748
// ----------------------------------------------------------------------------------------
720
u8 NCMAG_GetIdentification(void)
749
u8 NCMAG_GetIdentification(void)
721
{
750
{
722
        u8 retval = 0;
751
        u8 retval = 0;
723
        // try to catch the i2c buffer within 100 ms timeout
752
        // try to catch the i2c buffer within 100 ms timeout
724
        if(I2C_LockBufferFunc(100))
753
        if(I2CBus_LockBuffer(Compass_I2CPort, 100))
725
        {
754
        {
726
                u16 TxBytes = 0;
755
                u8 TxBytes = 0;
-
 
756
                u8 TxData[3];
727
                NCMAG_Identification.A = 0xFF;
757
                NCMAG_Identification.A = 0xFF;
728
                NCMAG_Identification.B = 0xFF;
758
                NCMAG_Identification.B = 0xFF;
729
                NCMAG_Identification.C = 0xFF;
759
                NCMAG_Identification.C = 0xFF;
730
                I2C_BufferPnt[TxBytes++] = REG_MAG_IDA;
760
                TxData[TxBytes++] = REG_MAG_IDA;
731
                // initiate transmission
761
                // initiate transmission
732
                if(I2C_TransmissionFunc(MAG_SLAVE_ADDRESS, TxBytes, &NCMAG_UpdateIdentification, sizeof(NCMAG_Identification)))
762
                if(I2CBus_Transmission(Compass_I2CPort, MAG_SLAVE_ADDRESS, TxData, TxBytes, &NCMAG_UpdateIdentification, sizeof(NCMAG_Identification)))
733
                {
763
                {
734
                        if(I2C_WaitForEndOfTransmissionFunc(100))
764
                        if(I2CBus_WaitForEndOfTransmission(Compass_I2CPort, 100))
735
                        {
765
                        {
736
                                if(*I2C_ErrorPnt == I2C_ERROR_NONE) retval = 1;
766
                                if(I2CBus(Compass_I2CPort)->Error == I2C_ERROR_NONE) retval = 1;
737
                        }
767
                        }
738
                }
768
                }
739
        }
769
        }
740
        return(retval);
770
        return(retval);
741
}
771
}
Line 742... Line 772...
742
 
772
 
743
u8 NCMAG_GetIdentification_Sub(void)
773
u8 NCMAG_GetIdentification_Sub(void)
744
{
774
{
745
        u8 retval = 0;
775
        u8 retval = 0;
746
        // try to catch the i2c buffer within 100 ms timeout
776
        // try to catch the i2c buffer within 100 ms timeout
747
        if(I2C_LockBufferFunc(100))
777
        if(I2CBus_LockBuffer(Compass_I2CPort, 100))
748
        {
778
        {
-
 
779
                u8 TxBytes = 0;
749
                u16 TxBytes = 0;
780
                u8 TxData[3];
750
                NCMAG_Identification2.Sub = 0xFF;
781
                NCMAG_Identification2.Sub = 0xFF;
751
                I2C_BufferPnt[TxBytes++] = REG_MAG_IDF;
782
                TxData[TxBytes++] = REG_MAG_IDF;
752
                // initiate transmission
783
                // initiate transmission
753
                if(I2C_TransmissionFunc(MAG_SLAVE_ADDRESS, TxBytes, &NCMAG_UpdateIdentification_Sub, sizeof(NCMAG_Identification2)))
784
                if(I2CBus_Transmission(Compass_I2CPort, MAG_SLAVE_ADDRESS, TxData, TxBytes, &NCMAG_UpdateIdentification_Sub, sizeof(NCMAG_Identification2)))
754
                {
785
                {
755
                        if(I2C_WaitForEndOfTransmissionFunc(100))
786
                        if(I2CBus_WaitForEndOfTransmission(Compass_I2CPort, 100))
756
                        {
787
                        {
757
                                if(*I2C_ErrorPnt == I2C_ERROR_NONE) retval = 1;
788
                                if(I2CBus(Compass_I2CPort)->Error == I2C_ERROR_NONE) retval = 1;
758
                        }
789
                        }
759
                }
790
                }
760
        }
791
        }
761
        return(retval);
792
        return(retval);
Line 762... Line 793...
762
}
793
}
763
 
794
 
764
 
795
 
765
// ----------------------------------------------------------------------------------------
796
// ----------------------------------------------------------------------------------------
766
void NCMAG_GetMagVector(void)
797
void NCMAG_GetMagVector(u8 timeout)
767
{
798
{
768
        // try to catch the I2C buffer within 0 ms
799
        // try to catch the I2C buffer within timeout ms
-
 
800
        if(I2CBus_LockBuffer(Compass_I2CPort, timeout))
769
        if(I2C_LockBufferFunc(5))
801
        {
770
        {
802
                u8 TxBytes = 0;
771
                u16 TxBytes = 0;
803
                u8 TxData[3];
772
                // set register pointer
804
                // set register pointer
773
                I2C_BufferPnt[TxBytes++] = REG_MAG_DATAX_MSB;
805
                TxData[TxBytes++] = REG_MAG_DATAX_MSB;
774
                // initiate transmission
806
                // initiate transmission
Line 775... Line 807...
775
                I2C_TransmissionFunc(MAG_SLAVE_ADDRESS, TxBytes, &NCMAG_UpdateMagVector, sizeof(MagVector));
807
                I2CBus_Transmission(Compass_I2CPort, MAG_SLAVE_ADDRESS, TxData, TxBytes, &NCMAG_UpdateMagVector, sizeof(MagVector));
776
        }
808
        }
777
}
809
}
778
 
810
 
779
//----------------------------------------------------------------
811
//----------------------------------------------------------------
780
void NCMAG_GetAccVector(u8 timeout)
812
void NCMAG_GetAccVector(u8 timeout)
781
{
813
{
-
 
814
        // try to catch the I2C buffer within timeout ms
782
        // try to catch the I2C buffer within 0 ms
815
        if(I2CBus_LockBuffer(Compass_I2CPort, timeout))
783
        if(I2C_LockBufferFunc(timeout))
816
        {
784
        {
817
                u8 TxBytes = 0;
785
                u16 TxBytes = 0;
818
                u8 TxData[3];
786
                // set register pointer
-
 
787
                I2C_BufferPnt[TxBytes++] = REG_ACC_X_LSB|REG_ACC_MASK_AUTOINCREMENT;
-
 
788
                // initiate transmission
-
 
789
                I2C_TransmissionFunc(ACC_SLAVE_ADDRESS, TxBytes, &NCMAG_UpdateAccVector, sizeof(AccRawVector));
819
                // set register pointer
790
//DebugOut.Analog[16] = AccRawVector.X;
820
                TxData[TxBytes++] = REG_ACC_X_LSB|REG_ACC_MASK_AUTOINCREMENT;
Line 791... Line 821...
791
//DebugOut.Analog[17] = AccRawVector.Y;
821
                // initiate transmission
792
//DebugOut.Analog[18] = AccRawVector.Z;
822
                I2CBus_Transmission(Compass_I2CPort, ACC_SLAVE_ADDRESS, TxData, TxBytes, &NCMAG_UpdateAccVector, sizeof(AccRawVector));
793
        }
823
        }
794
}
824
}
Line 795... Line 825...
795
 
825
 
796
//----------------------------------------------------------------
826
//----------------------------------------------------------------
Line 836... Line 866...
836
void NCMAG_Update(u8 init)
866
void NCMAG_Update(u8 init)
837
{
867
{
838
        static u32 TimerUpdate = 0;
868
        static u32 TimerUpdate = 0;
839
        static s8 send_config = 0;
869
        static s8 send_config = 0;
840
        u32 delay = 20;
870
        u32 delay = 20;
-
 
871
 
841
        if(init) TimerUpdate = SetDelay(10);
872
        if(init) TimerUpdate = SetDelay(10);
Line 842... Line -...
842
 
-
 
843
        // todo State Handling for both busses  !!
873
 
844
        if((I2C1_State == I2C_STATE_OFF) || (I2C_CompassPort == 0 && I2C0_State == I2C_STATE_OFF)/* || !NCMAG_Present*/ )
874
        if( (I2CBus(Compass_I2CPort)->State == I2C_STATE_UNDEF) /*|| !NCMAG_Present*/ )
845
        {
875
        {
846
                Compass_Heading = -1;
876
                Compass_Heading = -1;
847
                DebugOut.Analog[14]++; // count I2C error
877
                DebugOut.Analog[14]++; // count I2C error
848
                TimerUpdate = SetDelay(10);
878
                TimerUpdate = SetDelay(10);
849
                return;
879
                return;
850
        }
880
        }
851
        if(CheckDelay(TimerUpdate))// && I2C0_State == I2C_STATE_IDLE && I2C1_State == I2C_STATE_IDLE)
881
        if(CheckDelay(TimerUpdate))
852
        {
882
        {
853
                if(Compass_Heading != -1) send_config = 0; // no re-configuration if value is valid
883
                if(Compass_Heading != -1) send_config = 0; // no re-configuration if value is valid
854
        if(++send_config == 25)   // 500ms
884
        if(++send_config == 25)   // 500ms
855
                {
885
                {
856
                        send_config = -25;    // next try after 1 second
886
                        send_config = -25;    // next try after 1 second
857
                InitNC_MagnetSensor();
887
                NCMAG_ConfigureSensor();
858
                        TimerUpdate = SetDelay(20);    // back into the old time-slot
888
                        TimerUpdate = SetDelay(20);    // back into the old time-slot
859
                }
889
                }
860
                else
890
                else
861
                {
891
                {
Line 866... Line 896...
866
                       
896
 
867
                        // in case of LSM303 type
897
                        // in case of LSM303 type
868
                        switch(NCMAG_SensorType)
898
                        switch(NCMAG_SensorType)
869
                        {
899
                        {
-
 
900
                                case TYPE_HMC5843:
870
                                case TYPE_HMC5843:                             
901
                                        delay = 20;      // next cycle after 20 ms
871
                                        NCMAG_GetMagVector();
-
 
872
                                        delay = 20;
902
                                        NCMAG_GetMagVector(5);
873
                                        break;
903
                                        break;
874
                                case TYPE_LSM303DLH:
904
                                case TYPE_LSM303DLH:
875
                                case TYPE_LSM303DLM:
-
 
876
                                        delay = 20;
905
                                case TYPE_LSM303DLM:
877
//delay = 2;
906
 
878
                                        if(s-- || (I2C_CompassPort == I2C_INTERN_1)) NCMAG_GetMagVector();
-
 
879
                                        else
907
                                        if(s-- || (Compass_I2CPort == NCMAG_PORT_INTERN))
-
 
908
                                        {
-
 
909
                                                delay = 20;      // next cycle after 20 ms
-
 
910
                                                NCMAG_GetMagVector(5);
-
 
911
                                        }
-
 
912
                                        else // having an external compass, read every 50th cycle the ACC vec
880
                                         {
913
                                        {       // try to initialize if no data are there
-
 
914
                                                if((AccRawVector.X + AccRawVector.Y + AccRawVector.Z) == 0) NCMAG_Init_ACCSensor();
881
                                          if(AccRawVector.X + AccRawVector.Y + AccRawVector.Z == 0) NCMAG_Init_ACCSensor();
915
                                                // get new data
882
                                          NCMAG_GetAccVector(5);
916
                                                NCMAG_GetAccVector(5);
883
                                          delay = 10;
917
                                                delay = 10; // next cycle after 10 ms
884
                                          s = 40;  // about 0,8 sec
918
                                                s = 40; //reset downconter about 0,8 sec
885
                                         };
-
 
886
                                        if(!s) delay = 10; // ACC-Reading in the next step after 10ms
-
 
887
//if(!s) delay = 2; // ACC-Reading in the next step after 10ms
919
                                        }
888
                                        break;                           
920
                                        break;
889
                        }
921
                        }
890
                        if(send_config == 24) TimerUpdate = SetDelay(15);    // next event is the re-configuration
922
                        if(send_config == 24) TimerUpdate = SetDelay(15);    // next event is the re-configuration
891
                        else TimerUpdate = SetDelay(delay);    // every 20 ms are 50 Hz
923
                        else TimerUpdate = SetDelay(delay);    // every 20 ms are 50 Hz
Line 927... Line 959...
927
                        zscale = LSM303DLH_TEST_ZSCALE;
959
                        zscale = LSM303DLH_TEST_ZSCALE;
928
                        break;
960
                        break;
Line 929... Line 961...
929
 
961
 
930
                case TYPE_LSM303DLM:
962
                case TYPE_LSM303DLM:
931
                        // does not support self test feature 
963
                        // does not support self test feature
932
                        done = retval;
964
                        done = 1;
933
                        return(retval);
965
                        return(1); // always return success
Line 934... Line 966...
934
                        break;
966
                        break;
935
 
967
 
936
                default:
968
                default:
Line 947... Line 979...
947
        while(!CheckDelay(time));
979
        while(!CheckDelay(time));
948
        // averaging
980
        // averaging
949
        #define AVERAGE 20
981
        #define AVERAGE 20
950
        for(i = 0; i<AVERAGE; i++)
982
        for(i = 0; i<AVERAGE; i++)
951
        {
983
        {
952
                NCMAG_GetMagVector();
984
                NCMAG_GetMagVector(5);
953
                time = SetDelay(20);
985
                time = SetDelay(20);
954
        while(!CheckDelay(time));
986
        while(!CheckDelay(time));
955
                XMax += MagRawVector.X;
987
                XMax += MagRawVector.X;
956
                YMax += MagRawVector.Y;
988
                YMax += MagRawVector.Y;
957
                ZMax += MagRawVector.Z;
989
                ZMax += MagRawVector.Z;
Line 963... Line 995...
963
        time = SetDelay(50);
995
        time = SetDelay(50);
964
        while(!CheckDelay(time));
996
        while(!CheckDelay(time));
965
        // averaging
997
        // averaging
966
        for(i = 0; i < AVERAGE; i++)
998
        for(i = 0; i < AVERAGE; i++)
967
        {
999
        {
968
                NCMAG_GetMagVector();
1000
                NCMAG_GetMagVector(5);
969
                time = SetDelay(20);
1001
                time = SetDelay(20);
970
        while(!CheckDelay(time));
1002
        while(!CheckDelay(time));
971
                XMin += MagRawVector.X;
1003
                XMin += MagRawVector.X;
972
                YMin += MagRawVector.Y;
1004
                YMin += MagRawVector.Y;
973
                ZMin += MagRawVector.Z;
1005
                ZMin += MagRawVector.Z;
Line 1005... Line 1037...
1005
        done = retval;
1037
        done = retval;
1006
        return(retval);
1038
        return(retval);
1007
}
1039
}
Line 1008... Line -...
1008
 
-
 
1009
 
1040
 
1010
//----------------------------------------------------------------
-
 
1011
void NCMAG_SelectI2CBus(u8 busno)
-
 
1012
{
-
 
1013
  if (busno == 0)
-
 
1014
  {
-
 
1015
    I2C_WaitForEndOfTransmissionFunc = &I2C0_WaitForEndOfTransmission;
-
 
1016
        I2C_LockBufferFunc = &I2C0_LockBuffer;
1041
 
1017
        I2C_TransmissionFunc = &I2C0_Transmission;
1042
void NCMAG_CheckOrientation(void)
1018
        I2C_BufferPnt = I2C0_Buffer;
-
 
1019
        I2C_ErrorPnt = &I2C0_Error;
-
 
1020
  }
1043
{       // only for external sensor
1021
   else
1044
        if(Compass_I2CPort == NCMAG_PORT_EXTERN)
1022
  {
-
 
1023
    I2C_WaitForEndOfTransmissionFunc = &I2C1_WaitForEndOfTransmission;
1045
        {
1024
        I2C_LockBufferFunc = &I2C1_LockBuffer;
1046
                NCMAG_Orientation = NCMAG_GetOrientationFromAcc();
1025
        I2C_TransmissionFunc = &I2C1_Transmission;
-
 
1026
        I2C_BufferPnt = I2C1_Buffer;
1047
                if(NCMAG_Orientation != (Calibration.Version>>4)) NCMAG_IsCalibrated = 0;
1027
        I2C_ErrorPnt = &I2C1_Error;
1048
                else NCMAG_IsCalibrated = 1;
1028
  }
-
 
1029
}
1049
        }
1030
 
1050
}
1031
//----------------------------------------------------------------
1051
//----------------------------------------------------------------
-
 
1052
u8 NCMAG_Init(void)
-
 
1053
{
-
 
1054
        MagRawVector.X = 0;
-
 
1055
    MagRawVector.Y = 0;
-
 
1056
    MagRawVector.Z = 0;
-
 
1057
        AccRawVector.X = 0;
-
 
1058
        AccRawVector.Y = 0;
-
 
1059
        AccRawVector.Z = 0;
-
 
1060
 
-
 
1061
        if(NCMAG_Present) // do only short init ! , full init was called before
-
 
1062
        {
-
 
1063
                // reset I2C Bus
-
 
1064
                I2CBus_Deinit(Compass_I2CPort);
-
 
1065
                I2CBus_Init(Compass_I2CPort);
-
 
1066
                // try to reconfigure senor
-
 
1067
                NCMAG_ConfigureSensor();
-
 
1068
                NCMAG_Update(1);
-
 
1069
        }
1032
u8 NCMAG_Init(void)
1070
        else  // full init
1033
{
1071
        {
1034
        u8 msg[64];
1072
                u8 msg[64];
Line 1035... Line 1073...
1035
        u8 retval = 0;
1073
                u8 retval = 0;
1036
        u8 repeat = 0;
1074
                u8 repeat = 0;
1037
 
1075
 
1038
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1076
                //--------------------------------------------
1039
// Search external sensor
-
 
1040
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-
 
1041
        I2C_CompassPort = I2C_EXTERN_0;
1077
                // search external sensor first
1042
        NCMAG_SelectI2CBus(I2C_CompassPort);
1078
                //--------------------------------------------
1043
 
1079
                Compass_I2CPort = NCMAG_PORT_EXTERN;
1044
        // get id bytes
1080
                // get id bytes
1045
        retval = 0;
1081
                retval = 0;
1046
    for(repeat = 0; repeat < 5; repeat++)
1082
                for(repeat = 0; repeat < 5; repeat++)
1047
        {
1083
                {
1048
//              retval = NCMAG_GetIdentification();
1084
                        //retval = NCMAG_GetIdentification();
1049
                retval = NCMAG_GetAccConfig();            // only the sensor with ACC is supported
1085
                        retval = NCMAG_GetAccConfig();            // only the external sensor with ACC is supported
1050
                if(retval) break; // break loop on success
1086
                        if(retval) break; // break loop on success
1051
                UART1_PutString("_");
1087
                        UART1_PutString("_");
1052
        }
1088
                }
-
 
1089
                // Extenal sensor not found?
1053
//retval = 1;
1090
                if(!retval)
1054
        if(!retval)
1091
                {
1055
        {
-
 
1056
         UART1_PutString(" internal sensor ");
1092
                        // search internal sensor afterwards
1057
         I2C_CompassPort = I2C_INTERN_1;
1093
                        UART1_PutString(" internal sensor");
1058
         NCMAG_SelectI2CBus(I2C_CompassPort);
1094
                        Compass_I2CPort = NCMAG_PORT_INTERN;
1059
        }
1095
                }
1060
        else
-
 
1061
        {
-
 
1062
         UART1_PutString(" external sensor ");
-
 
1063
         NCMAG_Init_ACCSensor();
-
 
1064
 
-
 
1065
         for(repeat = 0; repeat < 100; repeat++)
-
 
1066
          {
-
 
1067
           NCMAG_GetAccVector(10); // only the sensor with ACC is supported
-
 
1068
       ExtCompassOrientation = GetExtCompassOrientation();       
-
 
1069
           if(ExtCompassOrientation && (ExtCompassOrientation == Calibration.Version / 16)) break;
-
 
1070
           //UART1_Putchar('-');
-
 
1071
          }
-
 
1072
//DebugOut.Analog[19] = repeat;
-
 
1073
 
-
 
1074
     if(!ExtCompassOrientation) UART1_PutString(" (Orientation unknown!)");
1096
                else
1075
         else
-
 
1076
         {
-
 
1077
          NCMag_CalibrationRead(I2C_CompassPort);
-
 
1078
          sprintf(msg, "with orientation: %d ",ExtCompassOrientation );
-
 
1079
          UART1_PutString(msg);
-
 
1080
          if(ExtCompassOrientation != Calibration.Version / 16)
-
 
1081
           {
-
 
1082
            sprintf(msg, "\n\r! Warning: calibrated orientation was %d !",Calibration.Version / 16);
-
 
1083
            UART1_PutString(msg);
-
 
1084
           }
-
 
1085
          else UART1_PutString("ok ");
1097
                {
1086
         }
1098
                        UART1_PutString(" external sensor");
Line 1087... Line 1099...
1087
 
1099
                        Compass_I2CPort = NCMAG_PORT_EXTERN;
1088
        }
1100
                }
1089
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1101
                //-------------------------------------------
-
 
1102
 
1090
 
1103
                NCMAG_Present = 0;
1091
        NCMAG_Present = 0;
1104
                NCMAG_SensorType = TYPE_HMC5843;        // assuming having an HMC5843
1092
        NCMAG_SensorType = TYPE_HMC5843;        // assuming having an HMC5843
1105
                // polling for LSM302DLH/DLM option by ACC address ack
1093
        // polling for LSM302DLH/DLM option by ACC address ack
1106
                repeat = 0;
1094
    for(repeat = 0; repeat < 3; repeat++)
1107
                for(repeat = 0; repeat < 3; repeat++)
Line 1101... Line 1114...
1101
                // initialize ACC sensor
1114
                        // initialize ACC sensor
1102
                NCMAG_Init_ACCSensor();
1115
                        NCMAG_Init_ACCSensor();
Line 1103... Line 1116...
1103
 
1116
 
1104
                NCMAG_SensorType = TYPE_LSM303DLH;     
1117
                        NCMAG_SensorType = TYPE_LSM303DLH;
-
 
1118
                        // polling of sub identification
1105
                // polling of sub identification
1119
                        repeat = 0;
1106
            for(repeat = 0; repeat < 12; repeat++)
1120
                        for(repeat = 0; repeat < 12; repeat++)
1107
                {
1121
                        {
1108
                        retval = NCMAG_GetIdentification_Sub();
1122
                                retval = NCMAG_GetIdentification_Sub();
1109
                        if(retval) break; // break loop on success
1123
                                if(retval) break; // break loop on success
Line 1112... Line 1126...
1112
                {
1126
                        {
1113
                        if(NCMAG_Identification2.Sub == MAG_IDF_LSM303DLM)      NCMAG_SensorType = TYPE_LSM303DLM;
1127
                                if(NCMAG_Identification2.Sub == MAG_IDF_LSM303DLM)      NCMAG_SensorType = TYPE_LSM303DLM;
1114
                }      
1128
                        }
1115
        }
1129
                }
1116
        // get id bytes
1130
                // get id bytes
-
 
1131
                retval = 0;
1117
    for(repeat = 0; repeat < 3; repeat++)
1132
                for(repeat = 0; repeat < 3; repeat++)
1118
        {
1133
                {
1119
                retval = NCMAG_GetIdentification();
1134
                        retval = NCMAG_GetIdentification();
1120
                if(retval) break; // break loop on success
1135
                        if(retval) break; // break loop on success
1121
        }
1136
                }
Line 1149... Line 1164...
1149
                {
1164
                        {
1150
                        NCMAG_Present = 1;
1165
                                NCMAG_Present = 1;
Line 1151... Line 1166...
1151
 
1166
 
1152
                        if(EEPROM_Init())
1167
                                if(EEPROM_Init())
1153
                        {
1168
                                {
1154
                                NCMAG_IsCalibrated = NCMag_CalibrationRead(I2C_CompassPort);
1169
                                        NCMAG_IsCalibrated = NCMag_CalibrationRead(Compass_I2CPort);
1155
                                if(!NCMAG_IsCalibrated) UART1_PutString("\r\n Not calibrated!");
1170
                                        if(!NCMAG_IsCalibrated) UART1_PutString("\r\n Not calibrated!");
1156
                        }
1171
                                }
-
 
1172
                                else UART1_PutString("\r\n EEPROM data not available!!!!!!!!!!!!!!!");
-
 
1173
 
-
 
1174
                                // in case of an external sensor, try to get the orientation by acc readings
-
 
1175
                                if(Compass_I2CPort == NCMAG_PORT_EXTERN)
-
 
1176
                                {
-
 
1177
                                        // try to get orientation by acc sensor values
-
 
1178
                                        for(repeat = 0; repeat < 100; repeat++)
-
 
1179
                                        {
-
 
1180
                                                NCMAG_GetAccVector(10); // only the sensor with ACC is supported
-
 
1181
                                                NCMAG_Orientation = NCMAG_GetOrientationFromAcc();
-
 
1182
                                                if(NCMAG_Orientation && (NCMAG_Orientation == Calibration.Version >> 4)) break;
-
 
1183
                                        }
-
 
1184
                                        // check orientation result if available
-
 
1185
                                        sprintf(msg, "\r\n Orientation: ");
-
 
1186
                                        UART1_PutString(msg);
-
 
1187
                                        if(NCMAG_Orientation)
-
 
1188
                                        {
-
 
1189
                                                sprintf(msg, "%d ", NCMAG_Orientation);
-
 
1190
                                                UART1_PutString(msg);
-
 
1191
                                                if(NCMAG_IsCalibrated) // check against calibration data orientation
-
 
1192
                                                {
-
 
1193
                                                        if(NCMAG_Orientation != Calibration.Version >> 4)
-
 
1194
                                                        {
-
 
1195
                                                                sprintf(msg, "\n\r Warning: calibrated orientation was %d !",Calibration.Version >> 4);
-
 
1196
                                                                UART1_PutString(msg);
-
 
1197
                                                        }
-
 
1198
                                                }
-
 
1199
                                        }
-
 
1200
                                        else
-
 
1201
                                        {
-
 
1202
                                                UART1_PutString("unknown!");
-
 
1203
                                        }
-
 
1204
                                }
-
 
1205
 
1157
                        else UART1_PutString("\r\n EEPROM data not available!!!!!!!!!!!!!!!");
1206
 
1158
                        // perform self test
1207
                                // perform self test
1159
                        if(!NCMAG_SelfTest())
1208
                                if(!NCMAG_SelfTest())
1160
                        {
1209
                                {
1161
                                UART1_PutString("\r\n Selftest failed!!!!!!!!!!!!!!!!!!!!\r\n");
1210
                                        UART1_PutString("\r\n Selftest failed!!!!!!!!!!!!!!!!!!!!\r\n");
1162
                                LED_RED_ON;
1211
                                        LED_RED_ON;
1163
//                              NCMAG_IsCalibrated = 0;
1212
                                        //NCMAG_IsCalibrated = 0;
1164
                        }
1213
                                }
Line 1165... Line 1214...
1165
                        else UART1_PutString("\r\n Selftest ok");
1214
                                else UART1_PutString("\r\n Selftest ok");
1166
 
1215
 
1167
                        // initialize magnetic sensor configuration
1216
                                // initialize magnetic sensor configuration
1168
                        InitNC_MagnetSensor();
1217
                                NCMAG_ConfigureSensor();
1169
                }
1218
                        }
1170
                else
1219
                        else
1171
                {
1220
                        {
Line 1177... Line 1226...
1177
        else // nothing found
1226
                else // nothing found
1178
        {
1227
                {
1179
                NCMAG_SensorType = TYPE_NONE;
1228
                        NCMAG_SensorType = TYPE_NONE;
1180
                UART1_PutString("not found!");  
1229
                        UART1_PutString("not found!");
1181
        }
1230
                }
-
 
1231
        }
1182
        return(NCMAG_Present);
1232
        return(NCMAG_Present);
1183
}
1233
}