Subversion Repositories NaviCtrl

Rev

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

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