-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathbmi2.h
2071 lines (1953 loc) · 67.3 KB
/
bmi2.h
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
/**
* Copyright (c) 2023 Bosch Sensortec GmbH. All rights reserved.
*
* BSD-3-Clause
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* @file bmi2.h
* @date 2023-05-03
* @version v2.86.1
*
*/
/*!
* @defgroup bmi2xy BMI2XY
*/
/**
* \ingroup bmi2xy
* \defgroup bmi2 BMI2
* @brief Sensor driver for BMI2 sensor
*/
#ifndef BMI2_H_
#define BMI2_H_
/*! CPP guard */
#ifdef __cplusplus
extern "C" {
#endif
/***************************************************************************/
/*! Header files
****************************************************************************/
#include "bmi2_defs.h"
/***************************************************************************/
/*! BMI2XY User Interface function prototypes
****************************************************************************/
/**
* \ingroup bmi2
* \defgroup bmi2ApiInit Initialization
* @brief Initialize the sensor and device structure
*/
/*!
* \ingroup bmi2ApiInit
* \page bmi2_api_bmi2_sec_init bmi2_sec_init
* \code
* int8_t bmi2_sec_init(struct bmi2_dev *dev);
* \endcode
* @details This API is the entry point for bmi2 sensor. It selects between
* I2C/SPI interface, based on user selection. It also reads the chip-id of
* the sensor.
*
* @param[in,out] dev : Structure instance of bmi2_dev.
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_sec_init(struct bmi2_dev *dev);
/*!
* \ingroup bmi2ApiInit
* \page bmi2_api_bmi2_set_spi_en bmi2_set_spi_en
* \code
* int8_t bmi2_set_spi_en(uint8_t enable, struct bmi2_dev *dev);
* \endcode
* @details This API sets the status of SPI enable .
*
* @param[in] enable : To enable/disable SPI interface.
* @param[in] dev : Structure instance of bmi2_dev.
*
*@verbatim
* Enable | Description
* -------------|---------------
* BMI2_DISABLE | Enable I2C
* BMI2_ENABLE | Enable SPI
*@endverbatim
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_set_spi_en(uint8_t enable, struct bmi2_dev *dev);
/*!
* \ingroup bmi2ApiInit
* \page bmi2_api_bmi2_get_spi_en bmi2_get_spi_en
* \code
* int8_t bmi2_get_spi_en(uint8_t *enable, struct bmi2_dev *dev);
* \endcode
* @details This API gets the status of SPI enable .
*
* @param[in] enable : Pointer to get enable/disable SPI interface.
* @param[in] dev : Structure instance of bmi2_dev.
*
*@verbatim
* Enable | Description
* -------------|---------------
* BMI2_DISABLE | Enable I2C
* BMI2_ENABLE | Enable SPI
*@endverbatim
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_get_spi_en(uint8_t *enable, struct bmi2_dev *dev);
/*!
* \ingroup bmi2ApiInit
* \page bmi2_api_bmi2_set_spi3_interface_mode bmi2_set_spi3_interface_mode
* \code
* int8_t bmi2_set_spi3_interface_mode(uint8_t enable, struct bmi2_dev *dev);
* \endcode
* @details This API sets the status of SPI interface.
*
* @param[in] enable : To enable/disable SPI 3/4 wire interface.
* @param[in] dev : Structure instance of bmi2_dev.
*
*@verbatim
* Enable | Description
* -------------|---------------
* BMI2_DISABLE | Enable SPI 4 wire mode
* BMI2_ENABLE | Enable SPI 3 wire mode
*@endverbatim
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_set_spi3_interface_mode(uint8_t enable, struct bmi2_dev *dev);
/*!
* \ingroup bmi2ApiInit
* \page bmi2_api_bmi2_get_spi3_interface_mode bmi2_get_spi3_interface_mode
* \code
* int8_t bmi2_get_spi3_interface_mode(uint8_t *enable, struct bmi2_dev *dev);
* \endcode
* @details This API gets the status of SPI interface.
*
* @param[in] enable : Pointer to get enable/disable SPI 3/4 wire interface.
* @param[in] dev : Structure instance of bmi2_dev.
*
*@verbatim
* Enable | Description
* -------------|---------------
* BMI2_DISABLE | Enable SPI 4 wire mode
* BMI2_ENABLE | Enable SPI 3 wire mode
*@endverbatim
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_get_spi3_interface_mode(uint8_t *enable, struct bmi2_dev *dev);
/**
* \ingroup bmi2
* \defgroup bmi2ApiI2C I2c watchdog init
* @brief Initialize the watchdog for i2c
*/
/*!
* \ingroup bmi2ApiI2C
* \page bmi2_api_bmi2_set_i2c_wdt_en bmi2_set_i2c_wdt_en
* \code
* int8_t bmi2_set_i2c_wdt_en(uint8_t enable, struct bmi2_dev *dev);
* \endcode
* @details This API enables/disables the i2c watchdog timer .
*
* @param[in] enable : To enable/disable i2c watchdog timer.
* @param[in] dev : Structure instance of bmi2_dev.
*
*@verbatim
* Enable | Description
* -------------|---------------
* BMI2_DISABLE | Disable I2C watchdog timer
* BMI2_ENABLE | Enable I2C watchdog timer
*@endverbatim
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_set_i2c_wdt_en(uint8_t enable, struct bmi2_dev *dev);
/*!
* \ingroup bmi2ApiI2C
* \page bmi2_api_bmi2_get_i2c_wdt_en bmi2_get_i2c_wdt_en
* \code
* int8_t bmi2_get_i2c_wdt_en(uint8_t *enable, struct bmi2_dev *dev);
* \endcode
* @details This API gets the enable/disable status of the i2c watchdog timer .
*
* @param[in] enable : Pointer to get status of enable/disable i2c watchdog timer.
* @param[in] dev : Structure instance of bmi2_dev.
*
*@verbatim
* Enable | Description
* -------------|---------------
* BMI2_DISABLE | Disable I2C watchdog timer
* BMI2_ENABLE | Enable I2C watchdog timer
*@endverbatim
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_get_i2c_wdt_en(uint8_t *enable, struct bmi2_dev *dev);
/*!
* \ingroup bmi2ApiI2C
* \page bmi2_api_bmi2_set_i2c_wdt_sel bmi2_set_i2c_wdt_sel
* \code
* int8_t bmi2_set_i2c_wdt_sel(uint8_t watchdog_select, struct bmi2_dev *dev);
* \endcode
* @details This API sets i2c watchdog timer .
*
* @param[in] watchdog_select : To set watchdog timer for i2c.
* @param[in] dev : Structure instance of bmi2_dev.
*
*@verbatim
* Watchdog_select | Description
* ----------------------|---------------
* BMI2_DISABLE | I2C watchdog timeout after 1.25ms
* BMI2_ENABLE | I2c watchdog timeout after 40ms
*@endverbatim
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_set_i2c_wdt_sel(uint8_t watchdog_select, struct bmi2_dev *dev);
/*!
* \ingroup bmi2ApiI2C
* \page bmi2_api_bmi2_get_i2c_wdt_sel bmi2_get_i2c_wdt_sel
* \code
* int8_t bmi2_get_i2c_wdt_sel(uint8_t *watchdog_select, struct bmi2_dev *dev);
* \endcode
* @details This API sets i2c watchdog timer .
*
* @param[in] watchdog_select : Pointer to get watchdog timer for i2c.
* @param[in] dev : Structure instance of bmi2_dev.
*
*@verbatim
* Watchdog_select | Description
* --------------------- |---------------
* BMI2_DISABLE | I2C watchdog timeout after 1.25ms
* BMI2_ENABLE | I2c watchdog timeout after 40ms
*@endverbatim
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_get_i2c_wdt_sel(uint8_t *watchdog_select, struct bmi2_dev *dev);
/**
* \ingroup bmi2
* \defgroup bmi2ApiRegs Registers
* @brief Set / Get data from the given register address of the sensor
*/
/*!
* \ingroup bmi2ApiRegs
* \page bmi2_api_bmi2_get_regs bmi2_get_regs
* \code
* int8_t bmi2_get_regs(uint8_t reg_addr, uint8_t *data, uint16_t len, const struct bmi2_dev *dev);
* \endcode
* @details This API reads the data from the given register address of bmi2
* sensor.
*
* @param[in] reg_addr : Register address from which data is read.
* @param[out] data : Pointer to data buffer where read data is stored.
* @param[in] len : No. of bytes of data to be read.
* @param[in] dev : Structure instance of bmi2_dev.
*
* @note For most of the registers auto address increment applies, with the
* exception of a few special registers, which trap the address. For e.g.,
* Register address - 0x26, 0x5E.
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_get_regs(uint8_t reg_addr, uint8_t *data, uint16_t len, struct bmi2_dev *dev);
/*!
* \ingroup bmi2ApiRegs
* \page bmi2_api_bmi2_set_regs bmi2_set_regs
* \code
* int8_t bmi2_set_regs(uint8_t reg_addr, const uint8_t *data, uint16_t len, struct bmi2_dev *dev);
* \endcode
* @details This API writes data to the given register address of bmi2 sensor.
*
* @param[in] reg_addr : Register address to which the data is written.
* @param[in] data : Pointer to data buffer in which data to be written
* is stored.
* @param[in] len : No. of bytes of data to be written.
* @param[in] dev : Structure instance of bmi2_dev.
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_set_regs(uint8_t reg_addr, const uint8_t *data, uint16_t len, struct bmi2_dev *dev);
/**
* \ingroup bmi2
* \defgroup bmi2ApiSR Soft reset
* @brief Set / Get data from the given register address of the sensor
*/
/*!
* \ingroup bmi2ApiSR
* \page bmi2_api_bmi2_soft_reset bmi2_soft_reset
* \code
* int8_t bmi2_soft_reset(struct bmi2_dev *dev);
* \endcode
* @details This API resets bmi2 sensor. All registers are overwritten with
* their default values.
*
* @note If selected interface is SPI, an extra dummy byte is read to bring the
* interface back to SPI from default, after the soft reset command.
*
* @param[in] dev : Structure instance of bmi2_dev.
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_soft_reset(struct bmi2_dev *dev);
/**
* \ingroup bmi2
* \defgroup bmi2ApiConfig Configuration
* @brief Functions related to configuration of the sensor
*/
/*!
* \ingroup bmi2ApiConfig
* \page bmi2_api_bmi2_get_config_file_version bmi2_get_config_file_version
* \code
* int8_t bmi2_get_config_file_version(uint8_t *config_major, uint8_t *config_minor, struct bmi2_dev *dev);
* \endcode
* @details This API is used to get the config file major and minor information.
*
* @param[in] dev : Structure instance of bmi2_dev.
* @param[out] config_major : pointer to data buffer to store the config major.
* @param[out] config_minor : pointer to data buffer to store the config minor.
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_get_config_file_version(uint8_t *config_major, uint8_t *config_minor, struct bmi2_dev *dev);
/**
* \ingroup bmi2
* \defgroup bmi2ApiPowersave Advanced power save mode
* @brief Set / Get Advanced power save mode of the sensor
*/
/*!
* \ingroup bmi2ApiPowersave
* \page bmi2_api_bmi2_set_adv_power_save bmi2_set_adv_power_save
* \code
* int8_t bmi2_set_adv_power_save(uint8_t enable, struct bmi2_dev *dev);
* \endcode
* @details This API enables/disables the advance power save mode in the sensor.
*
* @param[in] enable : To enable/disable advance power mode.
* @param[in] dev : Structure instance of bmi2_dev.
*
*@verbatim
* Enable | Description
* -------------|---------------
* BMI2_DISABLE | Disables advance power save.
* BMI2_ENABLE | Enables advance power save.
*@endverbatim
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_set_adv_power_save(uint8_t enable, struct bmi2_dev *dev);
/*!
* \ingroup bmi2ApiPowersave
* \page bmi2_api_bmi2_get_adv_power_save bmi2_get_adv_power_save
* \code
* int8_t bmi2_get_adv_power_save(uint8_t *aps_status, struct bmi2_dev *dev);
* \endcode
* @details This API gets the status of advance power save mode in the sensor.
*
* @param[out] aps_status : Pointer to get the status of APS mode.
* @param[in] dev : Structure instance of bmi2_dev.
*
*@verbatim
* aps_status | Description
* -------------|---------------
* BMI2_DISABLE | Advance power save disabled.
* BMI2_ENABLE | Advance power save enabled.
*@endverbatim
*
* @return Result of API execution status
*
* @retval BMI2_OK - Success.
* @retval BMI2_E_NULL_PTR - Error: Null pointer error
* @retval BMI2_E_COM_FAIL - Error: Communication fail
* @retval BMI2_E_SET_APS_FAIL - Error: Set Advance Power Save Fail
*/
int8_t bmi2_get_adv_power_save(uint8_t *aps_status, struct bmi2_dev *dev);
/*!
* \ingroup bmi2ApiPowersave
* \page bmi2_api_bmi2_set_fast_power_up bmi2_set_fast_power_up
* \code
* int8_t bmi2_set_fast_power_up(uint8_t fast_power_up, struct bmi2_dev *dev);
* \endcode
* @details This API enables/disables the fast power up mode in the sensor.
*
* @param[in] fast_power_up : To enable/disable advance power mode.
* @param[in] dev : Structure instance of bmi2_dev.
*
*@verbatim
* Fast_power_up | Description
* --------------------|---------------
* BMI2_DISABLE | Disables fast power up.
* BMI2_ENABLE | Enables fast power up.
*@endverbatim
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_set_fast_power_up(uint8_t fast_power_up, struct bmi2_dev *dev);
/*!
* \ingroup bmi2ApiPowersave
* \page bmi2_api_bmi2_get_fast_power_up bmi2_get_fast_power_up
* \code
* int8_t bmi2_get_fast_power_up(uint8_t *fast_power_up, struct bmi2_dev *dev);
* \endcode
* @details This API gets the enable/disable status of the fast power up mode in the sensor.
*
* @param[in] fast_power_up : Pointer to get the enable/disable advance power mode.
* @param[in] dev : Structure instance of bmi2_dev.
*
*@verbatim
* Fast power up | Description
* --------------------|---------------
* BMI2_DISABLE | Disables fast power up.
* BMI2_ENABLE | Enables fast power up.
*@endverbatim
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_get_fast_power_up(uint8_t *fast_power_up, struct bmi2_dev *dev);
/*!
* \ingroup bmi2ApiConfig
* \page bmi2_api_bmi2_write_config_file bmi2_write_config_file
* \code
* int8_t bmi2_write_config_file(struct bmi2_dev *dev);
* \endcode
* @details This API loads the configuration file to the bmi2 sensor.
*
* @param[in] dev : Structure instance of bmi2_dev.
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_write_config_file(struct bmi2_dev *dev);
/**
* \ingroup bmi2
* \defgroup bmi2ApiInt Interrupt
* @brief Interrupt operations of the sensor
*/
/*!
* \ingroup bmi2ApiInt
* \page bmi2_api_bmi2_set_int_pin_config bmi2_set_int_pin_config
* \code
* int8_t bmi2_set_int_pin_config(const struct bmi2_int_pin_config *int_cfg, struct bmi2_dev *dev);
* \endcode
* @details This API sets:
* 1) The input output configuration of the selected interrupt pin:
* INT1 or INT2.
* 2) The interrupt mode: permanently latched or non-latched.
*
* @param[in] int_cfg : Structure instance of bmi2_int_pin_config.
* @param[in] dev : Structure instance of bmi2_dev.
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_set_int_pin_config(const struct bmi2_int_pin_config *int_cfg, struct bmi2_dev *dev);
/*!
* \ingroup bmi2ApiInt
* \page bmi2_api_bmi2_get_int_pin_config bmi2_get_int_pin_config
* \code
* int8_t bmi2_get_int_pin_config(struct bmi2_int_pin_config *int_cfg, const struct bmi2_dev *dev);
* \endcode
* @details This API gets:
* 1) The input output configuration of the selected interrupt pin:
* INT1 or INT2.
* 2) The interrupt mode: permanently latched or non-latched.
*
* @param[in,out] int_cfg : Structure instance of bmi2_int_pin_config.
* @param[in] dev : Structure instance of bmi2_dev.
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_get_int_pin_config(struct bmi2_int_pin_config *int_cfg, struct bmi2_dev *dev);
/*!
* \ingroup bmi2ApiInt
* \page bmi2_api_bmi2_get_int_status bmi2_get_int_status
* \code
* int8_t bmi2_get_int_status(uint16_t *int_status, const struct bmi2_dev *dev);
* \endcode
* @details This API gets the interrupt status of both feature and data
* interrupts.
*
* @param[out] int_status : Pointer to get the status of the interrupts.
* @param[in] dev : Structure instance of bmi2_dev.
*
*@verbatim
* int_status | Status
* -----------|------------
* 0x00 | BIT0
* 0x01 | BIT1
* 0x02 | BIT2
* 0x03 | BIT3
* 0x04 | BIT4
* 0x05 | BIT5
* 0x06 | BIT6
* 0x07 | BIT7
*@endverbatim
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_get_int_status(uint16_t *int_status, struct bmi2_dev *dev);
/**
* \ingroup bmi2
* \defgroup bmi2ApiSensorC Sensor Configuration
* @brief Enable / Disable feature configuration of the sensor
*/
/*!
* \ingroup bmi2ApiSensorC
* \page bmi2_api_bmi2_set_sensor_config bmi2_set_sensor_config
* \code
* int8_t bmi2_set_sensor_config(struct bmi2_sens_config *sens_cfg, uint8_t n_sens, struct bmi2_dev *dev);
* \endcode
* @details This API sets the sensor/feature configuration.
*
* @param[in] sens_cfg : Structure instance of bmi2_sens_config.
* @param[in] n_sens : Number of sensors selected.
* @param[in, out] dev : Structure instance of bmi2_dev.
*
* @note Sensors/features that can be configured
*
*@verbatim
* sens_list | Values
* ----------------------------|-----------
* BMI2_ACCEL | 0
* BMI2_GYRO | 1
* BMI2_AUX | 2
* BMI2_GYRO_GAIN_UPDATE | 9
*@endverbatim
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_set_sensor_config(struct bmi2_sens_config *sens_cfg, uint8_t n_sens, struct bmi2_dev *dev);
/*!
* \ingroup bmi2ApiSensorC
* \page bmi2_api_bmi2_get_sensor_config bmi2_get_sensor_config
* \code
* int8_t bmi2_get_sensor_config(struct bmi2_sens_config *sens_cfg, uint8_t n_sens, struct bmi2_dev *dev);
* \endcode
* @details This API gets the sensor/feature configuration.
*
* @param[in] sens_cfg : Structure instance of bmi2_sens_config.
* @param[in] n_sens : Number of sensors selected.
* @param[in, out] dev : Structure instance of bmi2_dev.
*
* @note Sensors/features whose configurations can be read.
*
*@verbatim
* sens_list | Values
* -------------------------|-----------
* BMI2_ACCEL | 0
* BMI2_GYRO | 1
* BMI2_AUX | 2
* BMI2_GYRO_GAIN_UPDATE | 9
*@endverbatim
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_get_sensor_config(struct bmi2_sens_config *sens_cfg, uint8_t n_sens, struct bmi2_dev *dev);
/**
* \ingroup bmi2
* \defgroup bmi2ApiSensor Feature Set
* @brief Enable / Disable features of the sensor
*/
/*!
* \ingroup bmi2ApiSensor
* \page bmi2_api_bmi2_sensor_enable bmi2_sensor_enable
* \code
* int8_t bmi2_sensor_enable(const uint8_t *sens_list, uint8_t n_sens, struct bmi2_dev *dev);
* \endcode
* @details This API selects the sensors/features to be enabled.
*
* @param[in] sens_list : Pointer to select the sensor/feature.
* @param[in] n_sens : Number of sensors selected.
* @param[in, out] dev : Structure instance of bmi2_dev.
*
* @note Sensors/features that can be enabled.
*
*@verbatim
* sens_list | Values
* -------------------------|-----------
* BMI2_ACCEL | 0
* BMI2_GYRO | 1
* BMI2_AUX | 2
* BMI2_TEMP | 31
*@endverbatim
*
* @note :
* example uint8_t sens_list[2] = {BMI2_ACCEL, BMI2_GYRO};
* uint8_t n_sens = 2;
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_sensor_enable(const uint8_t *sens_list, uint8_t n_sens, struct bmi2_dev *dev);
/*!
* \ingroup bmi2ApiSensor
* \page bmi2_api_bmi2_sensor_disable bmi2_sensor_disable
* \code
* int8_t bmi2_sensor_disable(const uint8_t *sens_list, uint8_t n_sens, struct bmi2_dev *dev);
* \endcode
* @details This API selects the sensors/features to be disabled.
*
* @param[in] sens_list : Pointer to select the sensor/feature.
* @param[in] n_sens : Number of sensors selected.
* @param[in, out] dev : Structure instance of bmi2_dev.
*
* @note Sensors/features that can be disabled.
*
*@verbatim
* sens_list | Values
* ----------------------------|-----------
* BMI2_ACCEL | 0
* BMI2_GYRO | 1
* BMI2_AUX | 2
* BMI2_TEMP | 31
*@endverbatim
*
* @note :
* example uint8_t sens_list[2] = {BMI2_ACCEL, BMI2_GYRO};
* uint8_t n_sens = 2;
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_sensor_disable(const uint8_t *sens_list, uint8_t n_sens, struct bmi2_dev *dev);
/**
* \ingroup bmi2
* \defgroup bmi2ApiSensorD Sensor Data
* @brief Get sensor data
*/
/*!
* \ingroup bmi2ApiSensorD
* \page bmi2_api_bmi2_get_feature_data bmi2_get_feature_data
* \code
* int8_t bmi2_get_feature_data(struct bmi2_feat_sensor_data *feat_sensor_data, uint8_t n_sens, struct bmi2_dev *dev);
* \endcode
* @details This API gets the feature data for gyroscope user-gain update and gyroscope cross sensitivity
*
* @param[out] feat_sensor_data : Structure instance of bmi2_feat_sensor_data.
* @param[in] n_sens : Number of sensors selected.
* @param[in] dev : Structure instance of bmi2_dev.
*
* @note Sensors/features whose data can be read
*
*@verbatim
* sens_list | Values
* ---------------------|-----------
* BMI2_GYRO_GAIN_UPDATE| 12
* BMI2_GYRO_CROSS_SENSE| 28
*@endverbatim
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_get_feature_data(struct bmi2_feat_sensor_data *feat_sensor_data, uint8_t n_sens, struct bmi2_dev *dev);
/*!
* \ingroup bmi2ApiSensorD
* \page bmi2_api_bmi2_get_sensor_data bmi2_get_sensor_data
* \code
* int8_t bmi2_get_sensor_data(struct bmi2_sens_data *data, struct bmi2_dev *dev);
* \endcode
* @details This API gets the sensor data for accelerometer, gyroscope and auxiliary sensor
*
* @param[out] data : Structure instance of bmi2_sens_data.
* @param[in] dev : Structure instance of bmi2_dev.
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_get_sensor_data(struct bmi2_sens_data *data, struct bmi2_dev *dev);
/**
* \ingroup bmi2
* \defgroup bmi2ApiTemperature Temperature
* @brief Read temperature of the sensor.
*/
/*!
* \ingroup bmi2ApiTemperature
* \page bmi2_api_bmi2_get_temperature_data bmi2_get_temperature_data
* \code
* int8_t bmi2_get_temperature_data(uint16_t *temp_data, struct bmi2_dev *dev);
* \endcode
* @details This API reads the raw temperature data from the register and can be
* converted into degree celsius using the below formula.
* Formula: temperature_value = (float)(((float)((int16_t)temperature_data)) / 512.0) + 23.0
* @note Enable gyro to read temperature
*
* @param[out] temp_data : Pointer variable which stores the raw temperature value.
* @param[in] dev : Structure instance of bmi2_dev.
*
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_get_temperature_data(uint16_t *temp_data, struct bmi2_dev *dev);
/*!
* \ingroup bmi2ApiSensorD
* \page bmi2_api_bmi2_parse_sensor_data bmi2_parse_sensor_data
* \code
* int8_t bmi2_parse_sensor_data(const uint8_t *sensor_data, struct bmi2_sens_data *data, const struct bmi2_dev *dev);
* \endcode
* @details This API parses the sensor data for accelerometer, gyroscope and auxiliary sensor
*
* @param[in] sensor_data : Array of register data (24 bytes from Register 0x03 to 0x1A)
* @param[out] data : Structure instance of bmi2_sens_data.
* @param[in] dev : Structure instance of bmi2_dev.
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_parse_sensor_data(const uint8_t *sensor_data, struct bmi2_sens_data *data, const struct bmi2_dev *dev);
/**
* \ingroup bmi2
* \defgroup bmi2ApiFIFO FIFO
* @brief FIFO operations of the sensor
*/
/*!
* \ingroup bmi2ApiFIFO
* \page bmi2_api_bmi2_set_fifo_config bmi2_set_fifo_config
* \code
* int8_t bmi2_set_fifo_config(uint16_t config, uint8_t enable, struct bmi2_dev *dev);
* \endcode
* @details This API sets the FIFO configuration in the sensor.
*
* @param[in] config : FIFO configurations to be enabled/disabled.
* @param[in] enable : Enable/Disable FIFO configurations.
* @param[in] dev : Structure instance of bmi2_dev.
*
*@verbatim
* enable | Description
* -------------|---------------
* BMI2_DISABLE | Disables FIFO configuration.
* BMI2_ENABLE | Enables FIFO configuration.
*@endverbatim
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_set_fifo_config(uint16_t config, uint8_t enable, struct bmi2_dev *dev);
/*!
* \ingroup bmi2ApiFIFO
* \page bmi2_api_bmi2_get_fifo_config bmi2_get_fifo_config
* \code
* int8_t bmi2_get_fifo_config(uint16_t *fifo_config, const struct bmi2_dev *dev);
* \endcode
* @details This API gets the FIFO configuration from the sensor.
*
* @param[out] fifo_config : Pointer variable to get FIFO configuration value.
* @param[in] dev : Structure instance of bmi2_dev.
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_get_fifo_config(uint16_t *fifo_config, struct bmi2_dev *dev);
/*!
* \ingroup bmi2ApiFIFO
* \page bmi2_api_bmi2_read_fifo_data bmi2_read_fifo_data
* \code
* int8_t bmi2_read_fifo_data(struct bmi2_fifo_frame *fifo, const struct bmi2_dev *dev);
* \endcode
* @details This API reads FIFO data.
*
* @param[in, out] fifo : Structure instance of bmi2_fifo_frame.
* @param[in] dev : Structure instance of bmi2_dev.
*
* @note APS has to be disabled before calling this function.
* @note Dummy byte (for SPI Interface) required for FIFO data read
* must be given as part of data pointer in struct bmi2_fifo_frame
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_read_fifo_data(struct bmi2_fifo_frame *fifo, struct bmi2_dev *dev);
/*!
* \ingroup bmi2ApiFIFO
* \page bmi2_api_bmi2_extract_accel bmi2_extract_accel
* \code
* int8_t bmi2_extract_accel(struct bmi2_sens_axes_data *accel_data,
* uint16_t *accel_length,
* struct bmi2_fifo_frame *fifo,
* const struct bmi2_dev *dev);
* \endcode
* @details This API parses and extracts the accelerometer frames from FIFO data read by
* the "bmi2_read_fifo_data" API and stores it in the "accel_data" structure
* instance.
*
* @param[out] accel_data : Structure instance of bmi2_sens_axes_data
* where the parsed data bytes are stored.
* @param[in,out] accel_length : Number of accelerometer frames.
* @param[in,out] fifo : Structure instance of bmi2_fifo_frame.
* @param[in] dev : Structure instance of bmi2_dev.
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_extract_accel(struct bmi2_sens_axes_data *accel_data,
uint16_t *accel_length,
struct bmi2_fifo_frame *fifo,
const struct bmi2_dev *dev);
/*!
* \ingroup bmi2ApiFIFO
* \page bmi2_api_bmi2_extract_aux bmi2_extract_aux
* \code
* int8_t bmi2_extract_aux(struct bmi2_aux_fifo_data *aux,
* uint16_t *aux_length,
* struct bmi2_fifo_frame *fifo,
* const struct bmi2_dev *dev);
*
* \endcode
* @details This API parses and extracts the auxiliary frames from FIFO data
* read by the "bmi2_read_fifo_data" API and stores it in "aux_data" buffer.
*
* @param[out] aux : Pointer to structure where the parsed auxiliary
* data bytes are stored.
* @param[in,out] aux_length : Number of auxiliary frames.
* @param[in,out] fifo : Structure instance of bmi2_fifo_frame.
* @param[in] dev : Structure instance of bmi2_dev.
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_extract_aux(struct bmi2_aux_fifo_data *aux,
uint16_t *aux_length,
struct bmi2_fifo_frame *fifo,
const struct bmi2_dev *dev);
/*!
* \ingroup bmi2ApiFIFO
* \page bmi2_api_bmi2_extract_gyro bmi2_extract_gyro
* \code
* int8_t bmi2_extract_gyro(struct bmi2_sens_axes_data *gyro_data,
* uint16_t *gyro_length,
* struct bmi2_fifo_frame *fifo,
* const struct bmi2_dev *dev);
* \endcode
* @details This API parses and extracts the gyroscope frames from FIFO data read by the
* "bmi2_read_fifo_data" API and stores it in the "gyro_data"
* structure instance.
*
* @param[out] gyro_data : Structure instance of bmi2_sens_axes_data
* where the parsed data bytes are stored.
* @param[in,out] gyro_length : Number of gyroscope frames.
* @param[in,out] fifo : Structure instance of bmi2_fifo_frame.
* @param[in] dev : Structure instance of bmi2_dev.
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/
int8_t bmi2_extract_gyro(struct bmi2_sens_axes_data *gyro_data,
uint16_t *gyro_length,
struct bmi2_fifo_frame *fifo,
const struct bmi2_dev *dev);
/**
* \ingroup bmi2
* \defgroup bmi2ApiCmd Command Register
* @brief Write commands to the sensor
*/
/*!
* \ingroup bmi2ApiCmd
* \page bmi2_api_bmi2_set_command_register bmi2_set_command_register
* \code
* int8_t bmi2_set_command_register(uint8_t command, struct bmi2_dev *dev);
* \endcode
* @details This API writes the available sensor specific commands to the sensor.
*
* @param[in] command : Commands to be given to the sensor.
* @param[in] dev : Structure instance of bmi2_dev.
*
*@verbatim
* Commands | Values
* ---------------------|---------------------
* BMI2_SOFT_RESET_CMD | 0xB6
* BMI2_FIFO_FLUSH_CMD | 0xB0
* BMI2_USR_GAIN_CMD | 0x03
*@endverbatim
*
* @return Result of API execution status
* @retval 0 -> Success
* @retval < 0 -> Fail
*/