-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathICM_20948.cpp
2113 lines (1883 loc) · 71.6 KB
/
ICM_20948.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "ICM_20948.h"
#include "util/ICM_20948_REGISTERS.h"
#include "util/AK09916_REGISTERS.h"
// Forward Declarations
ICM_20948_Status_e ICM_20948_write_I2C(uint8_t reg, uint8_t *data, uint32_t len, void *user);
ICM_20948_Status_e ICM_20948_read_I2C(uint8_t reg, uint8_t *buff, uint32_t len, void *user);
ICM_20948_Status_e ICM_20948_write_SPI(uint8_t reg, uint8_t *buff, uint32_t len, void *user);
ICM_20948_Status_e ICM_20948_read_SPI(uint8_t reg, uint8_t *buff, uint32_t len, void *user);
// Base
ICM_20948::ICM_20948()
{
status = ICM_20948_init_struct(&_device);
}
void ICM_20948::enableDebugging(Stream &debugPort)
{
_debugSerial = &debugPort; //Grab which port the user wants us to use for debugging
_printDebug = true; //Should we print the commands we send? Good for debugging
}
void ICM_20948::disableDebugging(void)
{
_printDebug = false; //Turn off extra print statements
}
// Debug Printing: based on gfvalvo's flash string helper code:
// https://forum.arduino.cc/index.php?topic=533118.msg3634809#msg3634809
void ICM_20948::debugPrint(const char *line)
{
doDebugPrint([](const char *ptr) { return *ptr; }, line);
}
void ICM_20948::debugPrint(const __FlashStringHelper *line)
{
doDebugPrint([](const char *ptr) { return (char)pgm_read_byte_near(ptr); },
(const char *)line);
}
void ICM_20948::debugPrintln(const char *line)
{
doDebugPrint([](const char *ptr) { return *ptr; }, line, true);
}
void ICM_20948::debugPrintln(const __FlashStringHelper *line)
{
doDebugPrint([](const char *ptr) { return (char)pgm_read_byte_near(ptr); },
(const char *)line, true);
}
void ICM_20948::doDebugPrint(char (*funct)(const char *), const char *string, bool newLine)
{
if (_printDebug == false)
return; // Bail if debugging is not enabled
char ch;
while ((ch = funct(string++)))
{
_debugSerial->print(ch);
}
if (newLine)
{
_debugSerial->println();
}
}
void ICM_20948::debugPrintf(int i)
{
if (_printDebug == true)
_debugSerial->print(i);
}
void ICM_20948::debugPrintf(float f)
{
if (_printDebug == true)
_debugSerial->print(f);
}
void ICM_20948::debugPrintStatus(ICM_20948_Status_e stat)
{
switch (stat)
{
case ICM_20948_Stat_Ok:
debugPrint(F("All is well."));
break;
case ICM_20948_Stat_Err:
debugPrint(F("General Error"));
break;
case ICM_20948_Stat_NotImpl:
debugPrint(F("Not Implemented"));
break;
case ICM_20948_Stat_ParamErr:
debugPrint(F("Parameter Error"));
break;
case ICM_20948_Stat_WrongID:
debugPrint(F("Wrong ID"));
break;
case ICM_20948_Stat_InvalSensor:
debugPrint(F("Invalid Sensor"));
break;
case ICM_20948_Stat_NoData:
debugPrint(F("Data Underflow"));
break;
case ICM_20948_Stat_SensorNotSupported:
debugPrint(F("Sensor Not Supported"));
break;
case ICM_20948_Stat_DMPNotSupported:
debugPrint(F("DMP Firmware Not Supported. Is #define ICM_20948_USE_DMP commented in util/ICM_20948_C.h?"));
break;
case ICM_20948_Stat_DMPVerifyFail:
debugPrint(F("DMP Firmware Verification Failed"));
break;
case ICM_20948_Stat_FIFONoDataAvail:
debugPrint(F("No FIFO Data Available"));
break;
case ICM_20948_Stat_FIFOIncompleteData:
debugPrint(F("DMP data in FIFO was incomplete"));
break;
case ICM_20948_Stat_FIFOMoreDataAvail:
debugPrint(F("More FIFO Data Available"));
break;
case ICM_20948_Stat_UnrecognisedDMPHeader:
debugPrint(F("Unrecognised DMP Header"));
break;
case ICM_20948_Stat_UnrecognisedDMPHeader2:
debugPrint(F("Unrecognised DMP Header2"));
break;
case ICM_20948_Stat_InvalDMPRegister:
debugPrint(F("Invalid DMP Register"));
break;
default:
debugPrint(F("Unknown Status"));
break;
}
}
ICM_20948_AGMT_t ICM_20948::getAGMT(void)
{
status = ICM_20948_get_agmt(&_device, &agmt);
return agmt;
}
float ICM_20948::magX(void)
{
return getMagUT(agmt.mag.axes.x);
}
float ICM_20948::magY(void)
{
return getMagUT(agmt.mag.axes.y);
}
float ICM_20948::magZ(void)
{
return getMagUT(agmt.mag.axes.z);
}
float ICM_20948::getMagUT(int16_t axis_val)
{
return (((float)axis_val) * 0.15);
}
float ICM_20948::accX(void)
{
return getAccMG(agmt.acc.axes.x);
}
float ICM_20948::accY(void)
{
return getAccMG(agmt.acc.axes.y);
}
float ICM_20948::accZ(void)
{
return getAccMG(agmt.acc.axes.z);
}
float ICM_20948::getAccMG(int16_t axis_val)
{
switch (agmt.fss.a)
{
case 0:
return (((float)axis_val) / 16.384);
break;
case 1:
return (((float)axis_val) / 8.192);
break;
case 2:
return (((float)axis_val) / 4.096);
break;
case 3:
return (((float)axis_val) / 2.048);
break;
default:
return 0;
break;
}
}
float ICM_20948::gyrX(void)
{
return getGyrDPS(agmt.gyr.axes.x);
}
float ICM_20948::gyrY(void)
{
return getGyrDPS(agmt.gyr.axes.y);
}
float ICM_20948::gyrZ(void)
{
return getGyrDPS(agmt.gyr.axes.z);
}
float ICM_20948::getGyrDPS(int16_t axis_val)
{
switch (agmt.fss.g)
{
case 0:
return (((float)axis_val) / 131);
break;
case 1:
return (((float)axis_val) / 65.5);
break;
case 2:
return (((float)axis_val) / 32.8);
break;
case 3:
return (((float)axis_val) / 16.4);
break;
default:
return 0;
break;
}
}
//Gyro Bias
ICM_20948_Status_e ICM_20948::setBiasGyroX( int32_t newValue)
{
if (_device._dmp_firmware_available == true) // Is DMP supported?
{
unsigned char gyro_bias_reg[4];
gyro_bias_reg[0] = (unsigned char)(newValue >> 24);
gyro_bias_reg[1] = (unsigned char)(newValue >> 16);
gyro_bias_reg[2] = (unsigned char)(newValue >> 8);
gyro_bias_reg[3] = (unsigned char)(newValue & 0xff);
status = inv_icm20948_write_mems(&_device, GYRO_BIAS_X, 4, (const unsigned char*)&gyro_bias_reg);
return status;
}
return ICM_20948_Stat_DMPNotSupported;
}
ICM_20948_Status_e ICM_20948::setBiasGyroY( int32_t newValue)
{
if (_device._dmp_firmware_available == true) // Is DMP supported?
{
unsigned char gyro_bias_reg[4];
gyro_bias_reg[0] = (unsigned char)(newValue >> 24);
gyro_bias_reg[1] = (unsigned char)(newValue >> 16);
gyro_bias_reg[2] = (unsigned char)(newValue >> 8);
gyro_bias_reg[3] = (unsigned char)(newValue & 0xff);
status = inv_icm20948_write_mems(&_device, GYRO_BIAS_Y, 4, (const unsigned char*)&gyro_bias_reg);
return status;
}
return ICM_20948_Stat_DMPNotSupported;
}
ICM_20948_Status_e ICM_20948::setBiasGyroZ( int32_t newValue)
{
if (_device._dmp_firmware_available == true) // Is DMP supported?
{
unsigned char gyro_bias_reg[4];
gyro_bias_reg[0] = (unsigned char)(newValue >> 24);
gyro_bias_reg[1] = (unsigned char)(newValue >> 16);
gyro_bias_reg[2] = (unsigned char)(newValue >> 8);
gyro_bias_reg[3] = (unsigned char)(newValue & 0xff);
status = inv_icm20948_write_mems(&_device, GYRO_BIAS_Z, 4, (const unsigned char*)&gyro_bias_reg);
return status;
}
return ICM_20948_Stat_DMPNotSupported;
}
ICM_20948_Status_e ICM_20948::getBiasGyroX( int32_t* bias)
{
if (_device._dmp_firmware_available == true) // Is DMP supported?
{
unsigned char bias_data[4] = { 0 };
status = inv_icm20948_read_mems(&_device, GYRO_BIAS_X, 4, bias_data);
union {
int32_t signed32;
uint32_t unsigned32;
} signedUnsigned32;
signedUnsigned32.unsigned32 = (((uint32_t)bias_data[0]) << 24) | (((uint32_t)bias_data[1]) << 16) | (((uint32_t)bias_data[2]) << 8) | (bias_data[3]);
*bias = signedUnsigned32.signed32; // Convert from unsigned to signed with no cast ambiguity
return status;
}
return ICM_20948_Stat_DMPNotSupported;
}
ICM_20948_Status_e ICM_20948::getBiasGyroY( int32_t* bias)
{
if (_device._dmp_firmware_available == true) // Is DMP supported?
{
unsigned char bias_data[4] = { 0 };
status = inv_icm20948_read_mems(&_device, GYRO_BIAS_Y, 4, bias_data);
union {
int32_t signed32;
uint32_t unsigned32;
} signedUnsigned32;
signedUnsigned32.unsigned32 = (((uint32_t)bias_data[0]) << 24) | (((uint32_t)bias_data[1]) << 16) | (((uint32_t)bias_data[2]) << 8) | (bias_data[3]);
*bias = signedUnsigned32.signed32; // Convert from unsigned to signed with no cast ambiguity
return status;
}
return ICM_20948_Stat_DMPNotSupported;
}
ICM_20948_Status_e ICM_20948::getBiasGyroZ( int32_t* bias)
{
if (_device._dmp_firmware_available == true) // Is DMP supported?
{
unsigned char bias_data[4] = { 0 };
status = inv_icm20948_read_mems(&_device, GYRO_BIAS_Z, 4, bias_data);
union {
int32_t signed32;
uint32_t unsigned32;
} signedUnsigned32;
signedUnsigned32.unsigned32 = (((uint32_t)bias_data[0]) << 24) | (((uint32_t)bias_data[1]) << 16) | (((uint32_t)bias_data[2]) << 8) | (bias_data[3]);
*bias = signedUnsigned32.signed32; // Convert from unsigned to signed with no cast ambiguity
return status;
}
return ICM_20948_Stat_DMPNotSupported;
}
//Accel Bias
ICM_20948_Status_e ICM_20948::setBiasAccelX( int32_t newValue)
{
if (_device._dmp_firmware_available == true) // Is DMP supported?
{
unsigned char accel_bias_reg[4];
accel_bias_reg[0] = (unsigned char)(newValue >> 24);
accel_bias_reg[1] = (unsigned char)(newValue >> 16);
accel_bias_reg[2] = (unsigned char)(newValue >> 8);
accel_bias_reg[3] = (unsigned char)(newValue & 0xff);
status = inv_icm20948_write_mems(&_device, ACCEL_BIAS_X, 4, (const unsigned char*)&accel_bias_reg);
return status;
}
return ICM_20948_Stat_DMPNotSupported;
}
ICM_20948_Status_e ICM_20948::setBiasAccelY( int32_t newValue)
{
if (_device._dmp_firmware_available == true) // Is DMP supported?
{
unsigned char accel_bias_reg[4];
accel_bias_reg[0] = (unsigned char)(newValue >> 24);
accel_bias_reg[1] = (unsigned char)(newValue >> 16);
accel_bias_reg[2] = (unsigned char)(newValue >> 8);
accel_bias_reg[3] = (unsigned char)(newValue & 0xff);
status = inv_icm20948_write_mems(&_device, ACCEL_BIAS_Y, 4, (const unsigned char*)&accel_bias_reg);
return status;
}
return ICM_20948_Stat_DMPNotSupported;
}
ICM_20948_Status_e ICM_20948::setBiasAccelZ( int32_t newValue)
{
if (_device._dmp_firmware_available == true) // Is DMP supported?
{
unsigned char accel_bias_reg[4];
accel_bias_reg[0] = (unsigned char)(newValue >> 24);
accel_bias_reg[1] = (unsigned char)(newValue >> 16);
accel_bias_reg[2] = (unsigned char)(newValue >> 8);
accel_bias_reg[3] = (unsigned char)(newValue & 0xff);
status = inv_icm20948_write_mems(&_device, ACCEL_BIAS_Z, 4, (const unsigned char*)&accel_bias_reg);
return status;
}
return ICM_20948_Stat_DMPNotSupported;
}
ICM_20948_Status_e ICM_20948::getBiasAccelX( int32_t* bias)
{
if (_device._dmp_firmware_available == true) // Is DMP supported?
{
unsigned char bias_data[4] = { 0 };
status = inv_icm20948_read_mems(&_device, ACCEL_BIAS_X, 4, bias_data);
union {
int32_t signed32;
uint32_t unsigned32;
} signedUnsigned32;
signedUnsigned32.unsigned32 = (((uint32_t)bias_data[0]) << 24) | (((uint32_t)bias_data[1]) << 16) | (((uint32_t)bias_data[2]) << 8) | (bias_data[3]);
*bias = signedUnsigned32.signed32; // Convert from unsigned to signed with no cast ambiguity
return status;
}
return ICM_20948_Stat_DMPNotSupported;
}
ICM_20948_Status_e ICM_20948::getBiasAccelY( int32_t* bias)
{
if (_device._dmp_firmware_available == true) // Is DMP supported?
{
unsigned char bias_data[4] = { 0 };
status = inv_icm20948_read_mems(&_device, ACCEL_BIAS_Y, 4, bias_data);
union {
int32_t signed32;
uint32_t unsigned32;
} signedUnsigned32;
signedUnsigned32.unsigned32 = (((uint32_t)bias_data[0]) << 24) | (((uint32_t)bias_data[1]) << 16) | (((uint32_t)bias_data[2]) << 8) | (bias_data[3]);
*bias = signedUnsigned32.signed32; // Convert from unsigned to signed with no cast ambiguity
return status;
}
return ICM_20948_Stat_DMPNotSupported;
}
ICM_20948_Status_e ICM_20948::getBiasAccelZ( int32_t* bias)
{
if (_device._dmp_firmware_available == true) // Is DMP supported?
{
unsigned char bias_data[4] = { 0 };
status = inv_icm20948_read_mems(&_device, ACCEL_BIAS_Z, 4, bias_data);
union {
int32_t signed32;
uint32_t unsigned32;
} signedUnsigned32;
signedUnsigned32.unsigned32 = (((uint32_t)bias_data[0]) << 24) | (((uint32_t)bias_data[1]) << 16) | (((uint32_t)bias_data[2]) << 8) | (bias_data[3]);
*bias = signedUnsigned32.signed32; // Convert from unsigned to signed with no cast ambiguity
return status;
}
return ICM_20948_Stat_DMPNotSupported;
}
//CPass Bias
ICM_20948_Status_e ICM_20948::setBiasCPassX( int32_t newValue)
{
if (_device._dmp_firmware_available == true) // Is DMP supported?
{
unsigned char cpass_bias_reg[4];
cpass_bias_reg[0] = (unsigned char)(newValue >> 24);
cpass_bias_reg[1] = (unsigned char)(newValue >> 16);
cpass_bias_reg[2] = (unsigned char)(newValue >> 8);
cpass_bias_reg[3] = (unsigned char)(newValue & 0xff);
status = inv_icm20948_write_mems(&_device, CPASS_BIAS_X, 4, (const unsigned char*)&cpass_bias_reg);
return status;
}
return ICM_20948_Stat_DMPNotSupported;
}
ICM_20948_Status_e ICM_20948::setBiasCPassY( int32_t newValue)
{
if (_device._dmp_firmware_available == true) // Is DMP supported?
{
unsigned char cpass_bias_reg[4];
cpass_bias_reg[0] = (unsigned char)(newValue >> 24);
cpass_bias_reg[1] = (unsigned char)(newValue >> 16);
cpass_bias_reg[2] = (unsigned char)(newValue >> 8);
cpass_bias_reg[3] = (unsigned char)(newValue & 0xff);
status = inv_icm20948_write_mems(&_device, CPASS_BIAS_Y, 4, (const unsigned char*)&cpass_bias_reg);
return status;
}
return ICM_20948_Stat_DMPNotSupported;
}
ICM_20948_Status_e ICM_20948::setBiasCPassZ( int32_t newValue)
{
if (_device._dmp_firmware_available == true) // Is DMP supported?
{
unsigned char cpass_bias_reg[4];
cpass_bias_reg[0] = (unsigned char)(newValue >> 24);
cpass_bias_reg[1] = (unsigned char)(newValue >> 16);
cpass_bias_reg[2] = (unsigned char)(newValue >> 8);
cpass_bias_reg[3] = (unsigned char)(newValue & 0xff);
status = inv_icm20948_write_mems(&_device, CPASS_BIAS_Z, 4, (const unsigned char*)&cpass_bias_reg);
return status;
}
return ICM_20948_Stat_DMPNotSupported;
}
ICM_20948_Status_e ICM_20948::getBiasCPassX( int32_t* bias)
{
if (_device._dmp_firmware_available == true) // Is DMP supported?
{
unsigned char bias_data[4] = { 0 };
status = inv_icm20948_read_mems(&_device, CPASS_BIAS_X, 4, bias_data);
union {
int32_t signed32;
uint32_t unsigned32;
} signedUnsigned32;
signedUnsigned32.unsigned32 = (((uint32_t)bias_data[0]) << 24) | (((uint32_t)bias_data[1]) << 16) | (((uint32_t)bias_data[2]) << 8) | (bias_data[3]);
*bias = signedUnsigned32.signed32; // Convert from unsigned to signed with no cast ambiguity
return status;
}
return ICM_20948_Stat_DMPNotSupported;
}
ICM_20948_Status_e ICM_20948::getBiasCPassY( int32_t* bias)
{
if (_device._dmp_firmware_available == true) // Is DMP supported?
{
unsigned char bias_data[4] = { 0 };
status = inv_icm20948_read_mems(&_device, CPASS_BIAS_Y, 4, bias_data);
union {
int32_t signed32;
uint32_t unsigned32;
} signedUnsigned32;
signedUnsigned32.unsigned32 = (((uint32_t)bias_data[0]) << 24) | (((uint32_t)bias_data[1]) << 16) | (((uint32_t)bias_data[2]) << 8) | (bias_data[3]);
*bias = signedUnsigned32.signed32; // Convert from unsigned to signed with no cast ambiguity
return status;
}
return ICM_20948_Stat_DMPNotSupported;
}
ICM_20948_Status_e ICM_20948::getBiasCPassZ( int32_t* bias)
{
if (_device._dmp_firmware_available == true) // Is DMP supported?
{
unsigned char bias_data[4] = { 0 };
status = inv_icm20948_read_mems(&_device, CPASS_BIAS_Z, 4, bias_data);
union {
int32_t signed32;
uint32_t unsigned32;
} signedUnsigned32;
signedUnsigned32.unsigned32 = (((uint32_t)bias_data[0]) << 24) | (((uint32_t)bias_data[1]) << 16) | (((uint32_t)bias_data[2]) << 8) | (bias_data[3]);
*bias = signedUnsigned32.signed32; // Convert from unsigned to signed with no cast ambiguity
return status;
}
return ICM_20948_Stat_DMPNotSupported;
}
float ICM_20948::temp(void)
{
return getTempC(agmt.tmp.val);
}
float ICM_20948::getTempC(int16_t val)
{
return (((float)val - 21) / 333.87) + 21;
}
const char *ICM_20948::statusString(ICM_20948_Status_e stat)
{
ICM_20948_Status_e val;
if (stat == ICM_20948_Stat_NUM)
{
val = status;
}
else
{
val = stat;
}
switch (val)
{
case ICM_20948_Stat_Ok:
return "All is well.";
break;
case ICM_20948_Stat_Err:
return "General Error";
break;
case ICM_20948_Stat_NotImpl:
return "Not Implemented";
break;
case ICM_20948_Stat_ParamErr:
return "Parameter Error";
break;
case ICM_20948_Stat_WrongID:
return "Wrong ID";
break;
case ICM_20948_Stat_InvalSensor:
return "Invalid Sensor";
break;
case ICM_20948_Stat_NoData:
return "Data Underflow";
break;
case ICM_20948_Stat_SensorNotSupported:
return "Sensor Not Supported";
break;
case ICM_20948_Stat_DMPNotSupported:
return "DMP Firmware Not Supported. Is #define ICM_20948_USE_DMP commented in util/ICM_20948_C.h?";
break;
case ICM_20948_Stat_DMPVerifyFail:
return "DMP Firmware Verification Failed";
break;
case ICM_20948_Stat_FIFONoDataAvail:
return "No FIFO Data Available";
break;
case ICM_20948_Stat_FIFOIncompleteData:
return "DMP data in FIFO was incomplete";
break;
case ICM_20948_Stat_FIFOMoreDataAvail:
return "More FIFO Data Available";
break;
case ICM_20948_Stat_UnrecognisedDMPHeader:
return "Unrecognised DMP Header";
break;
case ICM_20948_Stat_UnrecognisedDMPHeader2:
return "Unrecognised DMP Header2";
break;
case ICM_20948_Stat_InvalDMPRegister:
return "Invalid DMP Register";
break;
default:
return "Unknown Status";
break;
}
return "None";
}
// Device Level
ICM_20948_Status_e ICM_20948::setBank(uint8_t bank)
{
status = ICM_20948_set_bank(&_device, bank);
return status;
}
ICM_20948_Status_e ICM_20948::swReset(void)
{
status = ICM_20948_sw_reset(&_device);
return status;
}
ICM_20948_Status_e ICM_20948::sleep(bool on)
{
status = ICM_20948_sleep(&_device, on);
return status;
}
ICM_20948_Status_e ICM_20948::lowPower(bool on)
{
status = ICM_20948_low_power(&_device, on);
return status;
}
ICM_20948_Status_e ICM_20948::setClockSource(ICM_20948_PWR_MGMT_1_CLKSEL_e source)
{
status = ICM_20948_set_clock_source(&_device, source);
return status;
}
ICM_20948_Status_e ICM_20948::checkID(void)
{
status = ICM_20948_check_id(&_device);
if (status != ICM_20948_Stat_Ok)
{
debugPrint(F("ICM_20948::checkID: ICM_20948_check_id returned: "));
debugPrintStatus(status);
debugPrintln(F(""));
}
return status;
}
bool ICM_20948::dataReady(void)
{
status = ICM_20948_data_ready(&_device);
if (status == ICM_20948_Stat_Ok)
{
return true;
}
return false;
}
uint8_t ICM_20948::getWhoAmI(void)
{
uint8_t retval = 0x00;
status = ICM_20948_get_who_am_i(&_device, &retval);
return retval;
}
bool ICM_20948::isConnected(void)
{
status = checkID();
if (status == ICM_20948_Stat_Ok)
{
return true;
}
debugPrint(F("ICM_20948::isConnected: checkID returned: "));
debugPrintStatus(status);
debugPrintln(F(""));
return false;
}
// Internal Sensor Options
ICM_20948_Status_e ICM_20948::setSampleMode(uint8_t sensor_id_bm, uint8_t lp_config_cycle_mode)
{
status = ICM_20948_set_sample_mode(&_device, (ICM_20948_InternalSensorID_bm)sensor_id_bm, (ICM_20948_LP_CONFIG_CYCLE_e)lp_config_cycle_mode);
delay(1); // Give the ICM20948 time to change the sample mode (see issue #8)
return status;
}
ICM_20948_Status_e ICM_20948::setFullScale(uint8_t sensor_id_bm, ICM_20948_fss_t fss)
{
status = ICM_20948_set_full_scale(&_device, (ICM_20948_InternalSensorID_bm)sensor_id_bm, fss);
return status;
}
ICM_20948_Status_e ICM_20948::setDLPFcfg(uint8_t sensor_id_bm, ICM_20948_dlpcfg_t cfg)
{
status = ICM_20948_set_dlpf_cfg(&_device, (ICM_20948_InternalSensorID_bm)sensor_id_bm, cfg);
return status;
}
ICM_20948_Status_e ICM_20948::enableDLPF(uint8_t sensor_id_bm, bool enable)
{
status = ICM_20948_enable_dlpf(&_device, (ICM_20948_InternalSensorID_bm)sensor_id_bm, enable);
return status;
}
ICM_20948_Status_e ICM_20948::setSampleRate(uint8_t sensor_id_bm, ICM_20948_smplrt_t smplrt)
{
status = ICM_20948_set_sample_rate(&_device, (ICM_20948_InternalSensorID_bm)sensor_id_bm, smplrt);
return status;
}
// Interrupts on INT Pin
ICM_20948_Status_e ICM_20948::clearInterrupts(void)
{
ICM_20948_INT_STATUS_t int_stat;
ICM_20948_INT_STATUS_1_t int_stat_1;
// read to clear interrupts
status = ICM_20948_set_bank(&_device, 0);
if (status != ICM_20948_Stat_Ok)
{
return status;
}
status = ICM_20948_execute_r(&_device, AGB0_REG_INT_STATUS, (uint8_t *)&int_stat, sizeof(ICM_20948_INT_STATUS_t));
if (status != ICM_20948_Stat_Ok)
{
return status;
}
status = ICM_20948_execute_r(&_device, AGB0_REG_INT_STATUS_1, (uint8_t *)&int_stat_1, sizeof(ICM_20948_INT_STATUS_1_t));
if (status != ICM_20948_Stat_Ok)
{
return status;
}
// todo: there may be additional interrupts that need to be cleared, like FIFO overflow/watermark
return status;
}
ICM_20948_Status_e ICM_20948::cfgIntActiveLow(bool active_low)
{
ICM_20948_INT_PIN_CFG_t reg;
status = ICM_20948_int_pin_cfg(&_device, NULL, ®); // read phase
if (status != ICM_20948_Stat_Ok)
{
return status;
}
reg.INT1_ACTL = active_low; // set the setting
status = ICM_20948_int_pin_cfg(&_device, ®, NULL); // write phase
if (status != ICM_20948_Stat_Ok)
{
return status;
}
return status;
}
ICM_20948_Status_e ICM_20948::cfgIntOpenDrain(bool open_drain)
{
ICM_20948_INT_PIN_CFG_t reg;
status = ICM_20948_int_pin_cfg(&_device, NULL, ®); // read phase
if (status != ICM_20948_Stat_Ok)
{
return status;
}
reg.INT1_OPEN = open_drain; // set the setting
status = ICM_20948_int_pin_cfg(&_device, ®, NULL); // write phase
if (status != ICM_20948_Stat_Ok)
{
return status;
}
return status;
}
ICM_20948_Status_e ICM_20948::cfgIntLatch(bool latching)
{
ICM_20948_INT_PIN_CFG_t reg;
status = ICM_20948_int_pin_cfg(&_device, NULL, ®); // read phase
if (status != ICM_20948_Stat_Ok)
{
return status;
}
reg.INT1_LATCH_EN = latching; // set the setting
status = ICM_20948_int_pin_cfg(&_device, ®, NULL); // write phase
if (status != ICM_20948_Stat_Ok)
{
return status;
}
return status;
}
ICM_20948_Status_e ICM_20948::cfgIntAnyReadToClear(bool enabled)
{
ICM_20948_INT_PIN_CFG_t reg;
status = ICM_20948_int_pin_cfg(&_device, NULL, ®); // read phase
if (status != ICM_20948_Stat_Ok)
{
return status;
}
reg.INT_ANYRD_2CLEAR = enabled; // set the setting
status = ICM_20948_int_pin_cfg(&_device, ®, NULL); // write phase
if (status != ICM_20948_Stat_Ok)
{
return status;
}
return status;
}
ICM_20948_Status_e ICM_20948::cfgFsyncActiveLow(bool active_low)
{
ICM_20948_INT_PIN_CFG_t reg;
status = ICM_20948_int_pin_cfg(&_device, NULL, ®); // read phase
if (status != ICM_20948_Stat_Ok)
{
return status;
}
reg.ACTL_FSYNC = active_low; // set the setting
status = ICM_20948_int_pin_cfg(&_device, ®, NULL); // write phase
if (status != ICM_20948_Stat_Ok)
{
return status;
}
return status;
}
ICM_20948_Status_e ICM_20948::cfgFsyncIntMode(bool interrupt_mode)
{
ICM_20948_INT_PIN_CFG_t reg;
status = ICM_20948_int_pin_cfg(&_device, NULL, ®); // read phase
if (status != ICM_20948_Stat_Ok)
{
return status;
}
reg.FSYNC_INT_MODE_EN = interrupt_mode; // set the setting
status = ICM_20948_int_pin_cfg(&_device, ®, NULL); // write phase
if (status != ICM_20948_Stat_Ok)
{
return status;
}
return status;
}
// All these individual functions will use a read->set->write method to leave other settings untouched
ICM_20948_Status_e ICM_20948::intEnableI2C(bool enable)
{
ICM_20948_INT_enable_t en; // storage
status = ICM_20948_int_enable(&_device, NULL, &en); // read phase
if (status != ICM_20948_Stat_Ok)
{
return status;
}
en.I2C_MST_INT_EN = enable; // change the setting
status = ICM_20948_int_enable(&_device, &en, &en); // write phase w/ readback
if (status != ICM_20948_Stat_Ok)
{
return status;
}
if (en.I2C_MST_INT_EN != enable)
{
status = ICM_20948_Stat_Err;
return status;
}
return status;
}
ICM_20948_Status_e ICM_20948::intEnableDMP(bool enable)
{
ICM_20948_INT_enable_t en; // storage
status = ICM_20948_int_enable(&_device, NULL, &en); // read phase
if (status != ICM_20948_Stat_Ok)
{
return status;
}
en.DMP_INT1_EN = enable; // change the setting
status = ICM_20948_int_enable(&_device, &en, &en); // write phase w/ readback
if (status != ICM_20948_Stat_Ok)
{
return status;
}
if (en.DMP_INT1_EN != enable)
{
status = ICM_20948_Stat_Err;
return status;
}
return status;
}
ICM_20948_Status_e ICM_20948::intEnablePLL(bool enable)
{
ICM_20948_INT_enable_t en; // storage
status = ICM_20948_int_enable(&_device, NULL, &en); // read phase
if (status != ICM_20948_Stat_Ok)
{
return status;
}
en.PLL_RDY_EN = enable; // change the setting
status = ICM_20948_int_enable(&_device, &en, &en); // write phase w/ readback
if (status != ICM_20948_Stat_Ok)
{
return status;
}
if (en.PLL_RDY_EN != enable)
{
status = ICM_20948_Stat_Err;
return status;
}
return status;
}
ICM_20948_Status_e ICM_20948::intEnableWOM(bool enable)
{
ICM_20948_INT_enable_t en; // storage
status = ICM_20948_int_enable(&_device, NULL, &en); // read phase
if (status != ICM_20948_Stat_Ok)
{
return status;
}
en.WOM_INT_EN = enable; // change the setting
status = ICM_20948_int_enable(&_device, &en, &en); // write phase w/ readback
if (status != ICM_20948_Stat_Ok)
{
return status;
}
if (en.WOM_INT_EN != enable)
{
status = ICM_20948_Stat_Err;
return status;
}
return status;
}
ICM_20948_Status_e ICM_20948::intEnableWOF(bool enable)
{
ICM_20948_INT_enable_t en; // storage
status = ICM_20948_int_enable(&_device, NULL, &en); // read phase
if (status != ICM_20948_Stat_Ok)
{
return status;
}
en.REG_WOF_EN = enable; // change the setting
status = ICM_20948_int_enable(&_device, &en, &en); // write phase w/ readback
if (status != ICM_20948_Stat_Ok)
{
return status;
}
if (en.REG_WOF_EN != enable)
{
status = ICM_20948_Stat_Err;
return status;
}
return status;
}
ICM_20948_Status_e ICM_20948::intEnableRawDataReady(bool enable)
{
ICM_20948_INT_enable_t en; // storage
status = ICM_20948_int_enable(&_device, NULL, &en); // read phase
if (status != ICM_20948_Stat_Ok)
{
return status;
}
en.RAW_DATA_0_RDY_EN = enable; // change the setting
status = ICM_20948_int_enable(&_device, &en, &en); // write phase w/ readback
if (status != ICM_20948_Stat_Ok)
{
return status;
}
if (en.RAW_DATA_0_RDY_EN != enable)
{
status = ICM_20948_Stat_Err;
return status;
}
return status;
}
ICM_20948_Status_e ICM_20948::intEnableOverflowFIFO(uint8_t bm_enable)
{
ICM_20948_INT_enable_t en; // storage
status = ICM_20948_int_enable(&_device, NULL, &en); // read phase
if (status != ICM_20948_Stat_Ok)
{
return status;
}
en.FIFO_OVERFLOW_EN_0 = ((bm_enable >> 0) & 0x01); // change the settings
en.FIFO_OVERFLOW_EN_1 = ((bm_enable >> 1) & 0x01);
en.FIFO_OVERFLOW_EN_2 = ((bm_enable >> 2) & 0x01);
en.FIFO_OVERFLOW_EN_3 = ((bm_enable >> 3) & 0x01);
en.FIFO_OVERFLOW_EN_4 = ((bm_enable >> 4) & 0x01);
status = ICM_20948_int_enable(&_device, &en, &en); // write phase w/ readback
if (status != ICM_20948_Stat_Ok)
{
return status;
}
return status;
}
ICM_20948_Status_e ICM_20948::intEnableWatermarkFIFO(uint8_t bm_enable)
{