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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
|
#ifndef __BSXFUSIONLIBRARY_H__
#define __BSXFUSIONLIBRARY_H__
/*!
* @section LICENCE
*
* (C) Copyright 2011~2014 Bosch Sensortec GmbH All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*
* @file bsxfusionlibrary.h
* @date 2013/02/12 created
*
* @brief
* This file provides an interface to use the functionality of nine degree of freedom software library
*
* @detail
* bsxfusionlibrary - nine degree of freedom software library for the processing of the
* accelerometer, magnetometer and gyroscope sensor data.The library supports different
* operational modes of the sensors. Additionally, the library provides the virtual sensors
* like compass, imu, 9dof sensors for orientation processing, which uses the sensor fusion
* algorithm for estimation of the orientation processing or sensor calibration methods.
*
*/
/************************************************************************************************************/
/* INCLUDES */
/************************************************************************************************************/
#include "BsxLibraryDataTypes.h"
/************************************************************************************************************/
/* GENERAL INTERFACE */
/************************************************************************************************************/
/*!
* @brief Get version of the bsx Fusion Library.
* Version is a structure of four element which
* consists of major, minor, minorbugfix and majorbugfix.
* e.g. major=3, minor=0, minorbugfix =1 and
* majorbugfix = 0 implies its bsx 3.0.1.0
* @param * version: Pointer to version structure
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
* @Usage Guide Call this API to get the version of
* the fusion library after initialization is done
*/
BSX_S8 bsx_get_version(ts_version*);
/*!
* @brief This API initializes the main library process.
* If the input pointer is NULL then it will
* initialize with default values defined in the library.
*
* @param Inputparams->accelspec : Pointer to accelspec char array that holds settings for particular accel sensor
* Inputparams->magspec : Pointer to magspec char array that holds settings for particular mag sensor
* Inputparams->gyrospec : Pointer to gyrospec char array that holds settings for particular gyro sensor
* Inputparams->usecaseconfig : Pointer to usecase char array that holds settings for particular usecase
*
* Inputparams->accelspec_status holds the status if the spec is error free and not modified from original
* 0 imply error in accel spec char array
* 1 imply No error in accel spec array and spec corresponds to bma250
* 2 imply No error in accel spec array and spec corresponds to bma255
* 3 imply No error in accel spec array and spec corresponds to bma280
*
* Inputparams->magspec_status holds the status if the spec is error free and not modified from original
* 0 imply error in mag spec char array
* 1 imply No error in mag spec array and spec corresponds to bmm050
* 2 imply No error in mag spec array and spec corresponds to bmm150
*
* Inputparams->gyrospec_status holds the status if the spec is error free and not modified from original
* 0 imply error in gyro spec char array
* 1 imply No error in gyro spec array and spec corresponds to bmg160
*
* Inputparams->usecase_status holds the status if the spec is error free and not modified from original
* 0 imply error in usecase char array
* 1 imply No error in usecase char array
*
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_init(initParam_t*);
/*!
* @brief reset dynamic state of the library
* @param none
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_reset(void);
/*!
* @brief Main library process - divided into three process running at different frequency - dopreprocess , docalibration and dousecase
* dopreprocess - preprocessing sensor, calibration and usecase
* docalibration - calibration of accel,mag,gyro,fmc
* dousecase - COMPASS/M4G , IMU , NDOF processing
* @param libraryinput_p -> pointer to sensor data
* structure which includes sensor data S32 type and
* time stamp in microseconds of U64 type
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_dostep(libraryinput_t* );
/*!
* @brief Pre Process Library (includes preprocessing of accel, mag, gyro,fmc, compass)
* @param libraryinput_p -> pointer to sensor data
* structure which includes sensor data S32 type and
* time stamp in microseconds of U64 type
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_dopreprocess(libraryinput_t*);
/*!
* @brief Sensor Calibration Layer - (includes calibration of accel, mag, gyro, fmc when corresponding tick.calib is enabled)
* @param None
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_docalibration(void);
/*!
* @brief Sensor Usecase Layer - responsible for all use-case processing (COMPASS,M4G,IMU,NDOF)
* @param None
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_dousecase(void);
/************************************************************************************************************/
/* ACCELEROMETER API */
/************************************************************************************************************/
/*!
* @brief Initialization of accelerometer modules with
* the default values(BMA250) defined inside the library.
* @param Pointer to accelspec char array that holds settings for particular accel sensor
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_init_acc(BSX_U8*);
/*!
* @brief Sets the measurement range for accelerometer
* @param Measrange(unsigned char):measurement range of accelerometer.
* Permissible values 0 -> 2G
* 1 -> 4G
* 2 -> 8G
* 3 -> 16G
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_accrange(BSX_U8);
/*!
* @brief Get the measurement range for accelerometer
* @param *measrange: pointer to measurement range(unsigned char)
* of accelerometer
* Output values 0 -> 2G
* 1 -> 4G
* 2 -> 8G
* 3 -> 16G
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_accrange(BSX_U8*);
/*!
* @brief Set the calling datarate for the accelerometer
* @param accdatarate(unsigned char): data rate of accelerometer
* permissible values
* 0 -> 1Hz
* 1 -> 5Hz
* 2 -> 10Hz
* 3 -> 20Hz
* 4 -> 25Hz
* 5 -> 40Hz
* 6 -> 50Hz
* 7 -> 100Hz
* 8 -> 125Hz
* 9 -> 200Hz
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_accdatarate(BSX_U8);
/*!
* @brief Get the datarate for the accelerometer
* @param accdatarate(*unsigned char): data rate of accelerometer
* Output values
* 0 -> 1Hz
* 1 -> 5Hz
* 2 -> 10Hz
* 3 -> 20Hz
* 4 -> 25Hz
* 5 -> 40Hz
* 6 -> 50Hz
* 7 -> 100Hz
* 8 -> 125Hz
* 9 -> 200Hz
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_accdatarate(BSX_U8*);
/*!
* @brief Set the accel calib accuracy threshold for the accelerometer
* @param threshold -> calib accuracy threshold of accelerometer
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_acccalib_accuracythreshold(BSX_U8);
/*!
* @brief Set the accelerometer calibration profile(calib offset and status)
* @param * calibprofile: Pointer to Accelerometer calibration profile
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_acccalibprofile(ts_calibprofile*);
/*!
* @brief Get the acceleromter calibration profile
* @param * calibprofile: Pointer to Accelerometer calibration profile
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_acccalibprofile(ts_calibprofile*);
/*!
* @brief reset the accelerometer calibration module
* @param none
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_reset_acccalib(void);
/************************************************************************************************************/
/* PEDOMETER DATA INTERFACE */
/************************************************************************************************************/
/*!
* @brief This API is used to set the pedometer stepdetection module
* @param none
* @return zero for enable, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_stepdetectionopmode(BSX_U8);
/*
* @brief This API is used to get the stepdetection opmode
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_stepdetectionopmode(BSX_U8*);
/*
* @brief This API is used to set the stepeventdetection opmode
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_stepeventdetectionopmode(BSX_U8);
/*
* @brief This API is used to get the stepeventdetection opmode
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_stepeventdetectionopmode(BSX_U8*);
/* @brief This API is used to set the stepdetectionrobustness opmode
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*
*/
BSX_S8 bsx_set_stepdetectionrobustness(BSX_U8);
/*
* @brief This API is used to get the stepdetectionrobustness opmode
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*
*/
BSX_S8 bsx_get_stepdetectionrobustness(BSX_U8*);
/*
* @brief This API used to get the status stepdetection
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*
*/
BSX_S8 bsx_get_stepdetectionstatus(BSX_U8*);
/*!
* @brief Get the stepcounter value from the algorithm
* @param *U64: it returns the value will be equal to 2^(64)
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_stepcount(BSX_U64*);
/*!
* @brief This API is used to set the step detection mean constant
*
* @param meanconst(BSX_F32 meanconst)
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_stepdetectionmeanconst(BSX_F32 meanconst);
/*!
* @brief This API is used to get the step detection mean constant
*
* @param meanconst(BSX_F32* meanconst)
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_stepdetectionmeanconst(BSX_F32* meanconst);
/*!
* @brief This API is used to set the step detection envmin variable
*
* @param envmin(BSX_F32 envmin)
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_stepdetectionenvmin(BSX_F32 envmin);
/*!
* @brief This API is used to get the step detection envmin variable
*
* @param envmin(BSX_F32* envmin)
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_stepdetectionenvmin(BSX_F32* envmin);
/*!
* @brief This API is used to set the step detection coefficient variable
*
* @param coefficient(BSX_F32 coefficient)
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_stepdetectioncoefficient(BSX_F32 coefficient);
/*!
* @brief This API is used to get the step detection coefficient variable
*
* @param coefficient(BSX_F32* coefficient)
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_stepdetectioncoefficient(BSX_F32* coefficient);
/*!
* @brief This API is used to set the step detection mean step frequency variable
*
* @param meanstepfreq(BSX_F32 meanstepfreq)
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_stepdetectionmeanstepfreq(BSX_F32 meanstepfreq);
/*!
* @brief This API is used to get the step detection mean step frequency variable
*
* @param meanstepfreq(BSX_F32* meanstepfreq)
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_stepdetectionmeanstepfreq(BSX_F32* meanstepfreq);
/*!
* @brief This API is used to set the step detection steps to buffer
*
* @param nstepstobuff(BSX_U32 nstepstobuff)
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_stepdetectionnstepstobuff(BSX_U32 nstepstobuff);
/*!
* @brief This API is used to get the step detection steps to buffer
*
* @param nstepstobuff(BSX_U32*nstepstobuff)
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_stepdetectionnstepstobuff(BSX_U32* nstepstobuff);
/*!
* @brief Resets the stepcounter value to zero it will resets
* the StepCount to initial vlaue as zero.
* @param None
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_reset_stepcount(void);
/************************************************************************************************************/
/* ACCELEROMETER DATA INTERFACE */
/************************************************************************************************************/
/*!
* @brief Get the raw accelerometer data(x,y and z direction) in m/s^2
* @param *rawaccdata: pointer to accelerometer raw data structure
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_accrawdata(ts_dataxyzf32*);
/*!
* @brief Get the corrected accelerometer data(x,y and z direction)
* in m/s^2. Corrected data = raw data – offset.
* @param accData -> accel data in ms^2
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_acccordata(ts_dataxyzf32*);
/*!
* @brief Get the corrected & filtered accelerometer data in ms^2
* from digital filter 1
* @param *filtaccdata-> pointer to accelerometer data structure
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_accfiltdata1(ts_dataxyzf32*);
/*!
* @brief Get the corrected & filtered accelerometer data in ms^2
* from digital filter 2
* @param *filtaccdata: pointer to accelerometer data structure
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_accfiltdata2(ts_dataxyzf32*);
/*!
* @brief Get the estimated offsets of the accelerometer in m/s^2
* @param *offset: pointer to structure having estimated offsets
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_accoffset(ts_dataxyzf32*);
/*!
* @brief Get the accelerometer calibration accuracy status
* @param *accuracyStatus -> current accelerometer calibration accuracy status
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_acccalibaccuracy(BSX_U8*);
/*!
* @brief Get the acc raw data in mg
* @param *rawdata_mg -> current accelerometer raw data in mg
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_accrawdata_mg(ts_dataxyzf32* );
/*!
* @brief Get the acc cor data in mg
* @param *cordata_mg -> current accelerometer cor data in mg
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_acccordata_mg(ts_dataxyzf32* );
/*!
* @brief Get the acc filt data1 in mg
* @param *filtdata1_mg -> current accelerometer filter data1 in mg
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_accfiltdata1_mg(ts_dataxyzf32* );
/*!
* @brief Get the acc filt data2 in mg
* @param *filtdata2_mg -> current accelerometer filter data2 in mg
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_accfiltdata2_mg(ts_dataxyzf32* );
/*!
* @brief Get the acc offsets in mg
* @param *accoffsets_mg -> current accelerometer offsets in mg
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_accoffsets_mg(ts_dataxyzs32* );
/************************************************************************************************************/
/* MAGNETOMETER API */
/************************************************************************************************************/
/*!
* @brief Initialization of magnetometer modules with
* the default values(bmm050) defined inside the library.
* @param magspec : Pointer to magspec char array that holds settings for particular mag sensor
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_init_mag(BSX_U8*);
/*!
* @brief Set the calling datarate for the magnetometer
* @param magdatarate(unsigned char)-> data rate of magnetometer
* permissible values
* 0 -> 1Hz
* 1 -> 5Hz
* 2 -> 10Hz
* 3 -> 20Hz
* 4 -> 25Hz
* 5 -> 40Hz
* 6 -> 50Hz
* 7 -> 100Hz
* 8 -> 125Hz
* 9 -> 200Hz
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_magdatarate(BSX_U8);
/*!
* @brief Get the datarate for the magnetometer
* @param magdatarate(*unsigned char)-> data rate of magnetometer
* Output values
* 0 -> 1Hz
* 1 -> 5Hz
* 2 -> 10Hz
* 3 -> 20Hz
* 4 -> 25Hz
* 5 -> 40Hz
* 6 -> 50Hz
* 7 -> 100Hz
* 8 -> 125Hz
* 9 -> 200Hz
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_magdatarate(BSX_U8*);
/*!
* @brief Set the magnetomter calibration profile(calib offset and status)
* @param *calibprofile-> pointer to magnetometer calibration profile
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_magcalibprofile(ts_calibprofile*);
/*!
* @brief Get the magnetomter calibration profile
* @param *calibprofile-> magnetometer calibration profile
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_magcalibprofile(ts_calibprofile*);
/*!
* @brief reset magnetometer calibration
* @param none
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_reset_magcalib(void);
/************************************************************************************************************/
/* MAGNETOMETER CALIB INTERFACE */
/************************************************************************************************************/
/*!
* @brief set magnetometer calibration process Noise. This API
* should be invoked only on special request from the
* customer. It is expected to use in daemon for specific
* customer requirement only. Input noise parameters should
* be provided by system engineers only. Parameters will
* be provided if required to meet specific customer requirement.
* @param processNoise(*float)-> pointer to processNoise vector
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
* @UsageGuide Call this API to set magnetometer calibration process
* Noise works for usecase Compass and accelerometer
* and magnetometer should be enabled
*/
BSX_S8 bsx_set_magcalib_processnoise( BSX_F32 *);
/*!
* @brief Get magnetometer calibration process Noise. This
* API is invoked to get the process noise either
* default parameters or parameters set by using set
* API. It can be used to check the set parameters
* in algorithm.
* @param processNoise(*float)-> pointer to processNoise vector
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
* @UsageGuide Call this API to get magnetometer calibration process
* Noise works for usecase Compass and accelerometer
* and magnetometer should be enabled
*/
BSX_S8 bsx_get_magcalib_processnoise( BSX_F32 *);
/************************************************************************************************************/
/* SOFT IRON CORRECTION INTERFACE */
/************************************************************************************************************/
/*!
* @brief Used to set the sensitivity correction matrix for soft iron
* correction.this API should be used with correct matrix as
* input else algorithm will behave unexpectedly. SIC matrix
* is predetermined either from SIC app, customer provided
* or other methods based on customer platform.
* @param correctMatrix : correction matrix 3x3 (pointer to float
* array of 9 elements i.e. 3 by 3 matrix)
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_softiron_correctionmatrix(ts_sensmatrix);
/*!
* @brief get the sensitivity correction matrix.
* This API can be used to retrieve the default
* SIC matrix (If it’s not set explicitly using set API)
* or set by using set API.
* @param *correctMatrix : pointer to correction matrix 3x3
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
* @UsageGuide Call this API to get the soft iron correction matrix.
* This API can be used to retrieve the default SIC matrix
* (If it’s not set explicitly using set API) or set by
* using set API.
*/
BSX_S8 bsx_get_softiron_correctionmatrix(ts_sensmatrix*);
/************************************************************************************************************/
/* ACCEL DYNAMIC FOR DISTORTION INTERFACE */
/************************************************************************************************************/
/*!
* @brief Sets the accelerometer dynamic detection mode.
* This API is used to set the mode of distortion
* detection based on accelerometer dynamics. It
* can be made 0->1 when accel dynamics should be
* used for distortion detection and 1->0 when it
* is preferred not to use accel dynamics for distortion
* detection. This provision was provide for special
* usecase of coil testing when magnetic field is moved
* around and sensor is static, in this case the flag
* should be 1->0.
* @param mode -> Enable/Disable mode
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_accdyn_distdetmode(BSX_U8 );
/*!
* @brief gets the accelerometer dynamic detection mode
* @param mode -> pointer to mode (Enable/Disable mode status)
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_accdyn_distdetmode(BSX_U8 *);
/************************************************************************************************************/
/* MAGNETOMETER DATA INTERFACE */
/************************************************************************************************************/
/*!
* @brief Get the raw 3-axis magnetometer data in microtesla
* @param *rawmagdata -> mag data in microtesla
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_magrawdata(ts_dataxyzf32*);
/*!
* @brief Get the 3-axis corrected magnetometer data in MicroTesla
* Corrected = raw – offset.
* @param *corMagData -> mag data in microtesla
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_magcordata(ts_dataxyzf32*);
/*!
* @brief Get the corrected & filtered 3-axis magnetometer data in microtesla
* from digital filter 1
* @param * p_filtmagdata: mag data in microtesla
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_magfiltdata1(ts_dataxyzf32*);
/*!
* @brief Get the corrected & filtered 3-axis magnetometer data in microtesla
* from digital filter 2
* @param *filtmagdata: mag data in MicroTesla
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_magfiltdata2(ts_dataxyzf32*);
/*!
* @brief Get the estimated parameter of the magnetometer
* @param offsets -> estimated offsets in microtesla
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_magoffsets(ts_dataxyzf32*);
/*!
* @brief Get the magnetometer calibration accuracy status
* @param accuracyStatus -> current magnetometer calibration accuracy status
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_magcalibaccuracy(BSX_U8 *);
/*!
* @brief get the soft iron correction data.
* This API is the interface for magnetometer soft iron corrected(using SIC matrix) and uncalibrated data
* from generic data preprocessing. Data interface is only for ndof and compass module.
* @param *sicdata : pointer to corrected data
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
* @UsageGuide Call this API to get the soft iron corrected and uncalibrated mag data.
* (If it’s not set explicitly using set API) or set by
* using set API.
*/
BSX_S8 bsx_get_magsoftironcorrecteddata(ts_dataxyzf32* );
/*!
* @brief get the soft iron correction data.
* This API is the interface for magnetometer soft iron corrected(using SIC matrix) and uncalibrated data
* from generic data preprocessing. Data interface is only for ndof and compass module.
* @param *sicdata : pointer to corrected data microtesla
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
* @UsageGuide Call this API to get the soft iron corrected and uncalibrated mag data.
* (If it’s not set explicitly using set API) or set by
* using set API.
*/
BSX_S8 bsx_get_magsoftironcorrecteddata_lsb(ts_dataxyzf32*);
/************************************************************************************************************/
/* GYROSCOPE API */
/************************************************************************************************************/
/*!
* @brief Initialization of gyroscope modules with the default values(bmg160)
* @param gyrospec : Pointer to gyrospec char array that holds settings for particular gyro sensor
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_init_gyro(BSX_U8*);
/*!
* @brief Set the measurement range for gyroscope
* @param Measrange -> measurement range of gyroscope
* Permissible Range
* 0 -> 2048 Dps
* 1 -> 2000 Dps
* 2 -> 1000 Dps
* 3 -> 500 Dps
* 4 -> 250 Dps
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_gyrorange(BSX_U8);
/*!
* @brief Get the measurement range for gyroscope
* @param *measrange -> pointer to measurement range of gyroscope
* Output Range
* 0 -> 2048 Dps
* 1 -> 2000 Dps
* 2 -> 1000 Dps
* 3 -> 500 Dps
* 4 -> 250 Dps
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_gyrorange(BSX_U8*);
/*!
* @brief Set the calling datarate for the gyroscope
* @param datarate-> datarate of gyroscope
* permissible values
* 0 -> 1Hz
* 1 -> 5Hz
* 2 -> 10Hz
* 3 -> 20Hz
* 4 -> 25Hz
* 5 -> 40Hz
* 6 -> 50Hz
* 7 -> 100Hz
* 8 -> 125Hz
* 9 -> 200Hz
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_gyrodatarate(BSX_U8);
/*!
* @brief Get the calling datarate for the gyroscope
* @param *datarate-> pointer to datarate of gyroscope
* permissible values
* 0 -> 1Hz
* 1 -> 5Hz
* 2 -> 10Hz
* 3 -> 20Hz
* 4 -> 25Hz
* 5 -> 40Hz
* 6 -> 50Hz
* 7 -> 100Hz
* 8 -> 125Hz
* 9 -> 200Hz
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_gyrodatarate(BSX_U8*);
/*!
* @brief Set the gyroscope calibration profile
* @param calibprofile-> gyroscope calibration profile
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_gyrocalibprofile(ts_calibprofile*);
/*!
* @brief Get the gyroscope calibration profile
* @param *calibprofile-> gyroscope calibration profile
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_gyrocalibprofile(ts_calibprofile*);
/*!
* @brief reset gyroscope calibration
* @param none
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_reset_gyrocalib(void);
/************************************************************************************************************/
/* GYROSCOPE DATA INTERFACE */
/************************************************************************************************************/
/*!
* @brief Get the raw 3-axis gryoscope data in degrees/sec
* @param gyroData -> gyro data in degrees/sec
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_gyrorawdata_dps(ts_dataxyzf32*);
/*!
* @brief Get the raw 3-axis gryoscope data in radians/sec
* @param gyroData -> gyro data in radians/sec
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_gyrorawdata_rps(ts_dataxyzf32*);
/*!
* @brief Get the corrected 3-axis gryoscope data in degrees/sec
* @param gyroData -> gyro data in degrees/sec
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_gyrocordata_dps(ts_dataxyzf32*);
/*!
* @brief Get the raw 3-axis gryoscope data in radians/sec
* @param gyroData -> gyro data in radians/sec
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_gyrocordata_rps(ts_dataxyzf32*);
/*!
* @brief Get the corrected & filtered 3-axis gyroscope data in degrees/sec
* from digital filter 1
* @param gyroData -> gyro data in degrees/sec
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_gyrofiltdata1_dps(ts_dataxyzf32*);
/*!
* @brief Get the corrected & filtered 3-axis gyroscope data in radians/sec
* from digital filter 1
* @param gyroData -> gyro data in radians/sec
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_gyrofiltdata1_rps(ts_dataxyzf32*);
/*!
* @brief Get the corrected & filtered 3-axis gyroscope data in degrees/sec
* from digital filter 2
* @param gyroData -> gyro data in degrees/sec
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_gyrofiltdata2_dps(ts_dataxyzf32*);
/*!
* @brief Get the corrected & filtered 3-axis gyroscope data in radians/sec
* from digital filter 2
* @param gyroData -> gyro data in radians/sec
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_gyrofiltdata2_rps(ts_dataxyzf32*);
/*!
* @brief Get the estimated parameter of the gyroscope
* @param offsets -> estimated offsets in degrees per sec
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_gyrooffset_dps(ts_dataxyzf32*);
/*!
* @brief Get the estimated parameter of the gyroscope
* @param offsets -> estimated offsets in radians per sec
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_gyrooffset_rps(ts_dataxyzf32*);
/*!
* @brief Get the gyroscope calibration accuracy status
* @param *gyrocalibaccuracy -> current gyroscope calibration accuracy status
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_gyrocalibaccuracy(BSX_U8*);
/************************************************************************************************************/
/* ORIENTATION PROCESSING API */
/************************************************************************************************************/
/*!
* @brief Initialization of orientation modules
* For compass mode -> compass module is initialized
* For IMU or NDOF mode -> NDOF module
* For ALL mode -> compass and NDOF module
* @param usecaseconfig : Pointer to usecase char array that holds settings for particular usecase
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_init_orient(BSX_U8*);
/*!
* @brief Reset of Orientation module
* @param none
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_reset_orient(void);
/*!
* @brief Restart of Orientation module
* @param none
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_restart_orient(void);
/*!
* @brief Heading base threshold for calcuting accuracy status
* @param none
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_HeadingAccuracyBaseThresh(BSX_F32 );
/************************************************************************************************************/
/* ORIENTATION DATA INTERFACE */
/************************************************************************************************************/
/*!
* @brief Get the orientation quaternion data
* @param *quatData -> quaternion data (w,x,y,z)
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_orientdata_quat(ts_dataquatf32 *);
/*!
* @brief Get the orientation quaternion data in lsb(scaling factor 2^14=16384)
* @param quatData -> quaternion data (w,x,y,z)
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_orientdata_quat_lsb(ts_dataquat *);
/*!
* @brief Get the orientation euler data(heading, pitch and roll) in degrees
* @param *eulerData -> euler data (h,p,r)
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_orientdata_euler_deg(ts_dataeulerf32 *);
/*!
* @brief Get the orientation euler data(heading, pitch and roll) in radians
* @param eulerData -> euler data (h,p,r)
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_orientdata_euler_rad(ts_dataeulerf32 *);
/*!
* @brief Get the orientation data accuracy status
* @param accuracyStatus -> orientation accuracy status
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_orient_datastatus(BSX_U8*);
/*!
* @brief Get the imu orientation quaternion data
* @param *quatData -> quaternion data (w,x,y,z)
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_imuorientdata_quat(ts_dataquatf32 *);
/*!
* @brief Get the imu orientation quaternion data in lsb
* @param *quatData -> quaternion data (w,x,y,z)
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_imuorientdata_quat_lsb(ts_dataquat *);
/*!
* @brief Get the imu orientation euler data(heading, pitch and roll) in degrees
* @param *eulerData -> euler data (h,p,r)
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_imuorientdata_euler_deg(ts_dataeulerf32 *);
/*!
* @brief Get the imu orientation euler data(heading, pitch and roll) in radians
* @param eulerData -> euler data (h,p,r)
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_imuorientdata_euler_rad(ts_dataeulerf32 *);
/*!
* @brief Get the orientation data accuracy status
* @param accuracyStatus -> orientation accuracy status
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_orient_datastatus( BSX_U8* );
/*!
* @brief Get the heading data accuracy in radians
* @brief Heading status refers to accuracy level of orientation data(from library) from
* @brief true heading calculation. This comparison is done with magnetic data coupling.
* @param *headingaccrad -> Pointer to read the error in heading in radians
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_headingaccuracy_rad( BSX_F32* );
/*!
* @brief Get the heading data accuracy in degree
* @brief Heading status refers to accuracy level of orientation data(from library) from
* @brief true heading calculation. This comparison is done with magnetic data coupling.
* @param *headingaccdeg -> Pointer to read the error in heading in degrees
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_headingaccuracy_deg( BSX_F32* );
/************************************************************************************************************/
/* COMPASS CONFIG INTERFACE */
/************************************************************************************************************/
/*!
* @brief Get the filter mode for compass and M4G
* @param *mode -> filter mode for compass
* Output values
* 0 -> Bypass
* 1 -> Low
* 2 -> Medium
* 3 -> High
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_compass_filtermode(BSX_U8*);
/*!
* @brief Set the acc noise threshold for compass and M4G
* @param accnoisethresh -> accel noise threshold
* @param magnoisethresh -> mag noise threshold
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_compass_magnoise( BSX_F32);
BSX_S8 bsx_set_compass_magfilterparam(BSX_F32,BSX_F32);
/**!
* @brief Set the acc noise threshold for compass and M4G
* @param accnoisethresh -> accel noise threshold
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_compass_accel_filternoise(BSX_F32);
/*!
* @brief Get the acc noise threshold for compass and M4G
* @param accnoisethresh -> accel noise threshold
* @param magnoisethresh -> mag noise threshold
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_compass_filternoise(BSX_F32*,BSX_F32*);
/*!
* @brief Set the filter noise parameters, the filter params
* are generated by filed engineer.
* @param basecoef -> base coefficient
* @param dyncoef -> dynamic coefficient
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
//BSX_S8 bsx_set_compass_filterparam(BSX_F32, BSX_F32);
/*!
* @brief Set the accel filter noise parameters, the filter params
* are generated by filed engineer.
* @param accelbasecoef -> accel base coefficient
* @param acceldyncoef -> accel dynamic coefficient
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_compass_accel_filterparam(BSX_F32, BSX_F32);
/*!
* @brief Get the filter noise param for compass and M4G
* @param basecoef -> base coefficient
* dyncoef -> dynamic coefficient
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_compass_filterparam(BSX_F32*, BSX_F32*,BSX_F32*, BSX_F32*);
//CR_19 changes
/*!
* @brief Set the accel dynamic threshold for M4G
* @param accdynthres -> accel dynamic threshold
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_m4g_accdynthreshold( BSX_U8);
/*!
* @brief Get the accel dynamic threshold for M4G
* @param accdynthres -> accel dynamic threshold
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_m4g_accdynthreshold( BSX_U8*);
/************************************************************************************************************/
/* GRAVITY VECTOR DATA INTERFACE */
/************************************************************************************************************/
/*!
* @brief Get the gravity vector data in ms^2
* @param *gravityVectorData -> gravity vector data in ms^2
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_gravity(ts_dataxyzf32 *);
/************************************************************************************************************/
/* LINEAR ACCELERATION DATA INTERFACE */
/************************************************************************************************************/
/*!
* @brief Get the linear acceleration data in ms^2
* @param linearAcc -> linear accel data in ms^2
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_linearacceleration(ts_dataxyzf32 *);
/************************************************************************************************************/
/* POWER MODES INTERFACE */
/************************************************************************************************************/
/*
* @brief Set the working opmode. Input is a structure of one
* element of BSX_U32 type and contains encoded opmode.
* e.g.
* workingModeMagOnly =98308;
* workingModeAccMag =98309;
* workingModeAccGyro =524305;
* workingModeImuPlus =525329;
* @param ts_workingModesStruct* - Pointer to working mode
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_workingmode(ts_workingModes *);
/*!
* @brief Get the sensor switch list for the current working mode.
* HWsensorSwitchList is a structure of three elements
* BSX_U8 acc,BSX_U8 mag,BSX_U8 gyro.This function gets
* the status of these three alements for the
* given working mode.e.g. if working mode
* is BSX_WORKINGMODE_MAGONLY then acc = 0,mag = 1,gyro = 0;
* @param * workingModes : Pointer to working mode constants
* * HWsensorSwitchList : Pointer to hardware switch list
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
* @Usage Guide Call this API to get sensor state based on working modes
*/
BSX_S8 bsx_get_hwdependency(ts_workingModes,ts_HWsensorSwitchList* );
/************************************************************************************************************/
/* Significant Motion API */
/************************************************************************************************************/
/*!
* @brief This API is used to set the significant motion opmode
* @param mode(unsigned short)
* mode = 1 activate significant motion
* mode >=0 deactivate significant motion
* when mode is set to 1, the significant motion
* initializes to Initial values
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_significantmotiondetectionopmode(BSX_U16);
/*!
* @brief This API is used to get the significant motion opmode
* @param *mode(pointer to unsigned short)
* mode = 1 significant motion active
* mode >=0 significant motion inactive
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_significantmotiondetectionopmode(BSX_U16*);
/*!
* @brief This API is used to get the significant motion detection status
* once the motion is detected the significant motion
* is deactivated. algorithm can be activated by calling set
* opmode API.
* @param *status(pointer to unsigned short)
* status = 1 motion detected
* status >=0 no motion detected
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_significantmotiondetectionstatus(BSX_U16*);
/************************************************************************************************************/
/* FLIP GESTURE API */
/************************************************************************************************************/
/*!
* @brief returns flip gesture opmode
* @param *Opmode(pointer to unsigned char)
* Mode = 0 implies flip gesture mode is off
* Mode >=1 implies flip gesture mode is On
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_flipgesture_opmode(BSX_U8* );
/*!
* @brief sets flip gesture opmode
* @param Opmode(pointer to unsigned char)
* Mode = 0 implies flip gesture mode is off
* Mode >=1 implies flip gesture mode is On
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
* @usage guide Call this API to set flip gesture opmode. works
* for all usecase(Compass,IMU,M4G,NDOF) and accelerometer
* should be enabled. To get the flip gesture outputs,
* flip gesture opmode should be enabled. Flipgesture
* opmode will be off by default.
*/
BSX_S8 bsx_set_flipgesture_opmode(BSX_U8 );
/*!
* @brief Gets the threshold of faceUp and faceDown angle
* @param faceup : Angle for faceup
* facedown:Angle for facedown
* expected values
* 100 < faceup <170
* 10 < facedown < 80
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_flipgesture_angle(BSX_F32* ,BSX_F32* );
/*!
* @brief sets flip gesture angle
* @param faceup : Angle for faceup
* facedown:Angle for facedown
* Range ->values should be between specified min and max,
* else values wont be set
* FACEUP_MIN 100
* FACEUP_MAX 170
* FACEDOWN_MIN 10
* FACEDOWN_MAX 80
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_flipgesture_angle(BSX_F32 ,BSX_F32 );
/*!
* @brief Get the detect time in mili seconds for flip gesture module
* @params Time : Detection time
* 300 ms < Time < 2000 ms
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_flipgesture_detecttime(BSX_U16* );
/*!
* @brief To set the detect time for flip gesture module in milliseconds
* @params Time : Detection time
* 300 ms < Time < 2000 ms
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_flipgesture_detecttime(BSX_U16 );
/*!
* @brief calibration tick
* @params Status:
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_calibrationcalltick(BSX_U8* );
/*!
* @brief Usecase tick
* @params Status:
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_usecasecalltick(BSX_U8* );
/*!
* @brief returns flip gesture status
* @params Status: Detection Status
* status = 0 implies facing is unknown
* status = 1 implies facing Up
* status = 2 implies facing Down
* status = 3 implies facing Neutral
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_flipgesture_status(BSX_U8* );
/*!
* @brief Read orient coordinate system - to get the co-ordinate system (WIN 8 or Android) which has been set already
* @param *coordinatesys -> coordinate systems
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_orientcoordinatesystem(BSX_U8* );
/*!
* @brief Sets orient coordinate system ( this api sets co - ordinate system corresponding to win 8 or android that has been passed as argument)
* @param coordinatesys -> coordinate systems
* coordinatesys -1 -> ANDROID (default)
* coordinatesys -2 -> WIN8
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_orientcoordinatesystem(BSX_U8 );
/*!
* @brief Get rotation matrix
* @param *rotmatrix -> orientation rotation matrix
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_orientrotationmatrix( BSX_F32* );
/*!
* @brief calcualtes orient accuracy from accel ,mag and gyro status
* @params accel status, magStatus, gyroStatus
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_U8 bsx_calcorientaccuracy(BSX_U8,BSX_U8,BSX_U8);
/*!
* @brief Get the geo magnetic rotationvector
* @param *georotationquat -> Orientation quaternion data (w,x,y,z)
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_georotationvector_quat(ts_dataquatf32*);
/*!
* @brief Get the geo magnetic rotation vector heading data accuracy in radians
* @brief Heading status refers to accuracy level of orientation data(from library) from
* @brief true heading calculation. This comparison is done with magnetic data coupling.
* @param *headingaccrad -> Pointer to read the error in heading in radians
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_geoheadingaccuracy_rad( BSX_F32*);
/*!
* @brief Get the geo magnetic rotation vector heading data accuracy in Degrees
* @brief Heading status refers to accuracy level of orientation data(from library) from
* @brief true heading calculation. This comparison is done with magnetic data coupling.
* @param *headingaccrad -> Pointer to read the error in heading in Degrees
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_geoheadingaccuracy_deg( BSX_F32*);
/************************************************************************************************************/
/* PRE-FILTER PARAMETERS API */
/************************************************************************************************************/
/*!
* @brief Set the heading sensitivity for compass and M4G
* @param sensitivity -> sensitivity mode for compass
* Permissible values
* 0 - 5: sensitivity mode values of 0 to 5 is defined
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_compass_headingsensitivity(BSX_U8);
/*!
* @brief Set the orientation correction speed for NDOF
* @param correction speed -> orientation correction speed for NDOF
* Permissible values
* 0 - 5: correction speed values of 0 to 5 is defined
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_ndof_orientcorrectionspeed(BSX_U8);
/*!
* @brief Set the Magnetic data filter mode
* @param mode -> mode for magnetic filter
* Permissible values
* 0 - 5: sensitivity mode values of 0 to 5 is defined
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_magfiltermode(BSX_U8);
/*!
* @brief Set the Magnetic calibration accuracy status sensitivity
* @param sensitivity -> sensitivity mode for magnetic calibration accuracy status
* Permissible values
* 0 - 5: sensitivity mode values of 0 to 5 is defined
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_magcalibacc_sensitivity(BSX_U8);
/*!
* @brief Set the Magnetic calibration speed
* @param calibration speed -> magnetic calibration speed
* Permissible values
* 0 - 5: correction speed values of 0 to 5 is defined
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_magcalibrationspeed(BSX_U8);
/*!
* @brief Set the Magnetic calibration accuracy auto recovery mode
* @param mode -> auto recovery mode for magnetic calibration accuracy
* Permissible values [0,1]
* 0: disable
* 1: Enable
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_set_compass_magcalibaccautorecmode(BSX_U8);
/*!
* @brief Get the geo magnetic rotationvector values in lsb
* @param *georotationquat -> Orientation quaternion data (w,x,y,z)
* @return zero for success, non-zero failed
* @retval 0 -> Success
* @retval 1 -> Error
*/
BSX_S8 bsx_get_georotationvector_quat_lsb(ts_dataquat*);
#endif
|