-
Notifications
You must be signed in to change notification settings - Fork 0
/
bme69x_defs.h
980 lines (711 loc) · 29 KB
/
bme69x_defs.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
/**
* Copyright (c) 2024 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 bme69x_defs.h
* @date 2024-05-14
* @version v1.0.1
*
*/
/*! @cond DOXYGEN_SUPRESS */
#ifndef BME69X_DEFS_H_
#define BME69X_DEFS_H_
/********************************************************* */
/*! Header includes */
/********************************************************* */
#ifdef __KERNEL__
#include <linux/types.h>
#include <linux/kernel.h>
#else
#include <stdint.h>
#include <stddef.h>
#endif
/********************************************************* */
/*! Common Macros */
/********************************************************* */
#ifdef __KERNEL__
#if !defined(UINT8_C) && !defined(INT8_C)
#define INT8_C(x) S8_C(x)
#define UINT8_C(x) U8_C(x)
#endif
#if !defined(UINT16_C) && !defined(INT16_C)
#define INT16_C(x) S16_C(x)
#define UINT16_C(x) U16_C(x)
#endif
#if !defined(INT32_C) && !defined(UINT32_C)
#define INT32_C(x) S32_C(x)
#define UINT32_C(x) U32_C(x)
#endif
#if !defined(INT64_C) && !defined(UINT64_C)
#define INT64_C(x) S64_C(x)
#define UINT64_C(x) U64_C(x)
#endif
#endif
/*! C standard macros */
#ifndef NULL
#ifdef __cplusplus
#define NULL 0
#else
#define NULL ((void *) 0)
#endif
#endif
#ifndef BME69X_DO_NOT_USE_FPU
/* Comment or un-comment the macro to provide floating point data output */
#define BME69X_USE_FPU
#endif
/* Period between two polls (value can be given by user) */
#ifndef BME69X_PERIOD_POLL
#define BME69X_PERIOD_POLL UINT32_C(10000)
#endif
/* BME69X unique chip identifier */
#define BME69X_CHIP_ID UINT8_C(0x61)
/* Period for a soft reset */
#define BME69X_PERIOD_RESET UINT32_C(10000)
/* BME69X lower I2C address */
#define BME69X_I2C_ADDR_LOW UINT8_C(0x76)
/* BME69X higher I2C address */
#define BME69X_I2C_ADDR_HIGH UINT8_C(0x77)
/* Soft reset command */
#define BME69X_SOFT_RESET_CMD UINT8_C(0xb6)
/* Return code definitions */
/* Success */
#define BME69X_OK INT8_C(0)
/* Errors */
/* Null pointer passed */
#define BME69X_E_NULL_PTR INT8_C(-1)
/* Communication failure */
#define BME69X_E_COM_FAIL INT8_C(-2)
/* Sensor not found */
#define BME69X_E_DEV_NOT_FOUND INT8_C(-3)
/* Incorrect length parameter */
#define BME69X_E_INVALID_LENGTH INT8_C(-4)
/* Self test fail error */
#define BME69X_E_SELF_TEST INT8_C(-5)
/* Warnings */
/* Define a valid operation mode */
#define BME69X_W_DEFINE_OP_MODE INT8_C(1)
/* No new data was found */
#define BME69X_W_NO_NEW_DATA INT8_C(2)
/* Define the shared heating duration */
#define BME69X_W_DEFINE_SHD_HEATR_DUR INT8_C(3)
/* Information - only available via bme69x_dev.info_msg */
#define BME69X_I_PARAM_CORR UINT8_C(1)
/* Register map addresses in I2C */
/* Register for 3rd group of coefficients */
#define BME69X_REG_COEFF3 UINT8_C(0x00)
/* 0th Field address*/
#define BME69X_REG_FIELD0 UINT8_C(0x1d)
/* 0th Current DAC address*/
#define BME69X_REG_IDAC_HEAT0 UINT8_C(0x50)
/* 0th Res heat address */
#define BME69X_REG_RES_HEAT0 UINT8_C(0x5a)
/* 0th Gas wait address */
#define BME69X_REG_GAS_WAIT0 UINT8_C(0x64)
/* Shared heating duration address */
#define BME69X_REG_SHD_HEATR_DUR UINT8_C(0x6E)
/* CTRL_GAS_0 address */
#define BME69X_REG_CTRL_GAS_0 UINT8_C(0x70)
/* CTRL_GAS_1 address */
#define BME69X_REG_CTRL_GAS_1 UINT8_C(0x71)
/* CTRL_HUM address */
#define BME69X_REG_CTRL_HUM UINT8_C(0x72)
/* CTRL_MEAS address */
#define BME69X_REG_CTRL_MEAS UINT8_C(0x74)
/* CONFIG address */
#define BME69X_REG_CONFIG UINT8_C(0x75)
/* MEM_PAGE address */
#define BME69X_REG_MEM_PAGE UINT8_C(0xf3)
/* Unique ID address */
#define BME69X_REG_UNIQUE_ID UINT8_C(0x83)
/* Register for 1st group of coefficients */
#define BME69X_REG_COEFF1 UINT8_C(0x8a)
/* Chip ID address */
#define BME69X_REG_CHIP_ID UINT8_C(0xd0)
/* Soft reset address */
#define BME69X_REG_SOFT_RESET UINT8_C(0xe0)
/* Register for 2nd group of coefficients */
#define BME69X_REG_COEFF2 UINT8_C(0xe1)
/* Variant ID Register */
#define BME69X_REG_VARIANT_ID UINT8_C(0xF0)
/* Enable/Disable macros */
/* Enable */
#define BME69X_ENABLE UINT8_C(0x01)
/* Disable */
#define BME69X_DISABLE UINT8_C(0x00)
/* Variant ID macros */
/* Low Gas variant */
#define BME69X_VARIANT_GAS_LOW UINT8_C(0x00)
/* High Gas variant */
#define BME69X_VARIANT_GAS_HIGH UINT8_C(0x01)
/* BME69x Gas variant */
#define BME690_VARIANT_GAS_HIGH UINT8_C(0x02)
/* Oversampling setting macros */
/* Switch off measurement */
#define BME69X_OS_NONE UINT8_C(0)
/* Perform 1 measurement */
#define BME69X_OS_1X UINT8_C(1)
/* Perform 2 measurements */
#define BME69X_OS_2X UINT8_C(2)
/* Perform 4 measurements */
#define BME69X_OS_4X UINT8_C(3)
/* Perform 8 measurements */
#define BME69X_OS_8X UINT8_C(4)
/* Perform 16 measurements */
#define BME69X_OS_16X UINT8_C(5)
/* IIR Filter settings */
/* Switch off the filter */
#define BME69X_FILTER_OFF UINT8_C(0)
/* Filter coefficient of 2 */
#define BME69X_FILTER_SIZE_1 UINT8_C(1)
/* Filter coefficient of 4 */
#define BME69X_FILTER_SIZE_3 UINT8_C(2)
/* Filter coefficient of 8 */
#define BME69X_FILTER_SIZE_7 UINT8_C(3)
/* Filter coefficient of 16 */
#define BME69X_FILTER_SIZE_15 UINT8_C(4)
/* Filter coefficient of 32 */
#define BME69X_FILTER_SIZE_31 UINT8_C(5)
/* Filter coefficient of 64 */
#define BME69X_FILTER_SIZE_63 UINT8_C(6)
/* Filter coefficient of 128 */
#define BME69X_FILTER_SIZE_127 UINT8_C(7)
/* ODR/Standby time macros */
/* Standby time of 0.59ms */
#define BME69X_ODR_0_59_MS UINT8_C(0)
/* Standby time of 62.5ms */
#define BME69X_ODR_62_5_MS UINT8_C(1)
/* Standby time of 125ms */
#define BME69X_ODR_125_MS UINT8_C(2)
/* Standby time of 250ms */
#define BME69X_ODR_250_MS UINT8_C(3)
/* Standby time of 500ms */
#define BME69X_ODR_500_MS UINT8_C(4)
/* Standby time of 1s */
#define BME69X_ODR_1000_MS UINT8_C(5)
/* Standby time of 10ms */
#define BME69X_ODR_10_MS UINT8_C(6)
/* Standby time of 20ms */
#define BME69X_ODR_20_MS UINT8_C(7)
/* No standby time */
#define BME69X_ODR_NONE UINT8_C(8)
/* Operating mode macros */
/* Sleep operation mode */
#define BME69X_SLEEP_MODE UINT8_C(0)
/* Forced operation mode */
#define BME69X_FORCED_MODE UINT8_C(1)
/* Parallel operation mode */
#define BME69X_PARALLEL_MODE UINT8_C(2)
/* Sequential operation mode */
#define BME69X_SEQUENTIAL_MODE UINT8_C(3)
/* SPI page macros */
/* SPI memory page 0 */
#define BME69X_MEM_PAGE0 UINT8_C(0x10)
/* SPI memory page 1 */
#define BME69X_MEM_PAGE1 UINT8_C(0x00)
/* Coefficient index macros */
/* Length for all coefficients */
#define BME69X_LEN_COEFF_ALL UINT8_C(42)
/* Length for 1st group of coefficients */
#define BME69X_LEN_COEFF1 UINT8_C(23)
/* Length for 2nd group of coefficients */
#define BME69X_LEN_COEFF2 UINT8_C(14)
/* Length for 3rd group of coefficients */
#define BME69X_LEN_COEFF3 UINT8_C(5)
/* Length of the field */
#define BME69X_LEN_FIELD UINT8_C(17)
/* Length between two fields */
#define BME69X_LEN_FIELD_OFFSET UINT8_C(17)
/* Length of the configuration register */
#define BME69X_LEN_CONFIG UINT8_C(5)
/* Length of the interleaved buffer */
#define BME69X_LEN_INTERLEAVE_BUFF UINT8_C(20)
/* Coefficient index macros */
/* Coefficient T2 LSB position */
#define BME69X_IDX_DTK1_C_LSB (0)
/* Coefficient T2 MSB position */
#define BME69X_IDX_DTK1_C_MSB (1)
/* Coefficient T3 position */
#define BME69X_IDX_DTK2_C (2)
/* Coefficient P1 LSB position */
#define BME69X_IDX_S_C_LSB (4)
/* Coefficient P1 MSB position */
#define BME69X_IDX_S_C_MSB (5)
/* Coefficient P2 LSB position */
#define BME69X_IDX_TK1S_C_LSB (6)
/* Coefficient P2 MSB position */
#define BME69X_IDX_TK1S_C_MSB (7)
/* Coefficient P3 position */
#define BME69X_IDX_TK2S_C (8)
/* Coefficient TK3S position */
#define BME69X_IDX_TK3S_C (9)
/* Coefficient P4 LSB position */
#define BME69X_IDX_O_C_LSB (10)
/* Coefficient P4 MSB position */
#define BME69X_IDX_O_C_MSB (11)
/* Coefficient P5 LSB position */
#define BME69X_IDX_TK10_C_LSB (12)
/* Coefficient P5 MSB position */
#define BME69X_IDX_TK10_C_MSB (13)
/* Coefficient P7 position */
#define BME69X_IDX_TK20_C (14)
/* Coefficient P6 position */
#define BME69X_IDX_TK30_C (15)
/* Coefficient P8 LSB position */
#define BME69X_IDX_NLS_C_LSB (18)
/* Coefficient P8 MSB position */
#define BME69X_IDX_NLS_C_MSB (19)
/* Coefficient P9 LSB position */
#define BME69X_IDX_TKNLS_C (20)
/* Coefficient P10 position */
#define BME69X_IDX_NLS3_C (21)
/* Coefficient H2 MSB position */
#define BME69X_IDX_S_H_MSB (23)
/* Coefficient H2 LSB position */
#define BME69X_IDX_S_H_LSB (24)
/* Coefficient H1 LSB position */
#define BME69X_IDX_O_H_LSB (24)
/* Coefficient H1 MSB position */
#define BME69X_IDX_O_H_MSB (25)
/* Coefficient H3 position */
#define BME69X_IDX_TK10H_C (26)
/* Coefficient H4 position */
#define BME69X_IDX_par_h4 (27)
/* Coefficient H5 position */
#define BME69X_IDX_par_h3 (28)
/* Coefficient H6 position */
#define BME69X_IDX_HLIN2_C (29)
/* Coefficient H7 position */
#define BME69X_IDX_TKHLIN2_C (30)
/* Coefficient T1 LSB position */
#define BME69X_IDX_DO_C_LSB (31)
/* Coefficient T1 MSB position */
#define BME69X_IDX_DO_C_MSB (32)
/* Coefficient GH2 LSB position */
#define BME69X_IDX_TKR_C_LSB (33)
/* Coefficient GH2 MSB position */
#define BME69X_IDX_TKR_C_MSB (34)
/* Coefficient GH1 position */
#define BME69X_IDX_RO_C (35)
/* Coefficient GH3 position */
#define BME69X_IDX_T_AMB_COMP (36)
/* Coefficient res heat value position */
#define BME69X_IDX_RES_HEAT_VAL (37)
/* Coefficient res heat range position */
#define BME69X_IDX_RES_HEAT_RANGE (39)
/* Coefficient range switching error position */
#define BME69X_IDX_RANGE_SW_ERR (41)
/* Gas measurement macros */
/* / * BME690 Heater Off Bit Position * / */
#define BME69X_HCTRL (3)
/* / * BME690 Run Gas Bit Position * / */
#define BME69X_RUN_GAS (6)
/* / * BME690 nb_Conv Bit Position * / */
#define BME69X_NBCONV (3)
/* Disable gas measurement */
#define BME69X_DISABLE_GAS_MEAS UINT8_C(0x00)
/* Enable gas measurement */
#define BME69X_ENABLE_GAS_MEAS UINT8_C(0x01)
/* Heater control macros */
/* Enable heater */
#define BME69X_ENABLE_HEATER UINT8_C(0x00)
/* Disable heater */
#define BME69X_DISABLE_HEATER UINT8_C(0x01)
#ifdef BME69X_USE_FPU
/* 0 degree Celsius */
#define BME69X_MIN_TEMPERATURE INT16_C(0)
/* 60 degree Celsius */
#define BME69X_MAX_TEMPERATURE INT16_C(60)
/* 900 hecto Pascals */
#define BME69X_MIN_PRESSURE UINT32_C(90000)
/* 1100 hecto Pascals */
#define BME69X_MAX_PRESSURE UINT32_C(110000)
/* 20% relative humidity */
#define BME69X_MIN_HUMIDITY UINT32_C(20)
/* 80% relative humidity*/
#define BME69X_MAX_HUMIDITY UINT32_C(80)
#else
/* 0 degree Celsius */
#define BME69X_MIN_TEMPERATURE INT16_C(0)
/* 60 degree Celsius */
#define BME69X_MAX_TEMPERATURE INT16_C(6000)
/* 900 hecto Pascals */
#define BME69X_MIN_PRESSURE UINT32_C(90000)
/* 1100 hecto Pascals */
#define BME69X_MAX_PRESSURE UINT32_C(110000)
/* 20% relative humidity */
#define BME69X_MIN_HUMIDITY UINT32_C(20000)
/* 80% relative humidity*/
#define BME69X_MAX_HUMIDITY UINT32_C(80000)
#endif
#define BME69X_HEATR_DUR1 UINT16_C(1000)
#define BME69X_HEATR_DUR2 UINT16_C(2000)
#define BME69X_HEATR_DUR1_DELAY UINT32_C(1000000)
#define BME69X_HEATR_DUR2_DELAY UINT32_C(2000000)
#define BME69X_N_MEAS UINT8_C(6)
#define BME69X_LOW_TEMP UINT8_C(150)
#define BME69X_HIGH_TEMP UINT16_C(350)
/* Mask macros */
/* Mask for number of conversions */
#define BME69X_NBCONV_MSK UINT8_C(0X0f)
/* Mask for IIR filter */
#define BME69X_FILTER_MSK UINT8_C(0X1c)
/* Mask for ODR[3] */
#define BME69X_ODR3_MSK UINT8_C(0x80)
/* Mask for ODR[2:0] */
#define BME69X_ODR20_MSK UINT8_C(0xe0)
/* Mask for temperature oversampling */
#define BME69X_OST_MSK UINT8_C(0Xe0)
/* Mask for pressure oversampling */
#define BME69X_OSP_MSK UINT8_C(0X1c)
/* Mask for humidity oversampling */
#define BME69X_OSH_MSK UINT8_C(0X07)
/* Mask for heater control */
#define BME69X_HCTRL_MSK UINT8_C(0x08)
/* Mask for run gas */
#define BME69X_RUN_GAS_MSK UINT8_C(0x30)
/* Mask for operation mode */
#define BME69X_MODE_MSK UINT8_C(0x03)
/* Mask for res heat range */
#define BME69X_RHRANGE_MSK UINT8_C(0x30)
/* Mask for range switching error */
#define BME69X_RSERROR_MSK UINT8_C(0xf0)
/* Mask for new data */
#define BME69X_NEW_DATA_MSK UINT8_C(0x80)
/* Mask for gas index */
#define BME69X_GAS_INDEX_MSK UINT8_C(0x0f)
/* Mask for gas range */
#define BME69X_GAS_RANGE_MSK UINT8_C(0x0f)
/* Mask for gas measurement valid */
#define BME69X_GASM_VALID_MSK UINT8_C(0x20)
/* Mask for heater stability */
#define BME69X_HEAT_STAB_MSK UINT8_C(0x10)
/* Mask for SPI memory page */
#define BME69X_MEM_PAGE_MSK UINT8_C(0x10)
/* Mask for reading a register in SPI */
#define BME69X_SPI_RD_MSK UINT8_C(0x80)
/* Mask for writing a register in SPI */
#define BME69X_SPI_WR_MSK UINT8_C(0x7f)
/* Mask for the H1 calibration coefficient */
#define BME69X_BIT_H1_DATA_MSK UINT8_C(0x0f)
/* Position macros */
/* Filter bit position */
#define BME69X_FILTER_POS UINT8_C(2)
/* Temperature oversampling bit position */
#define BME69X_OST_POS UINT8_C(5)
/* Pressure oversampling bit position */
#define BME69X_OSP_POS UINT8_C(2)
/* ODR[3] bit position */
#define BME69X_ODR3_POS UINT8_C(7)
/* ODR[2:0] bit position */
#define BME69X_ODR20_POS UINT8_C(5)
/* Run gas bit position */
#define BME69X_RUN_GAS_POS UINT8_C(5)
/* Heater control bit position */
#define BME69X_HCTRL_POS UINT8_C(3)
/* Macro to combine two 8 bit data's to form a 16 bit data */
#define BME69X_CONCAT_BYTES(msb, lsb) (((uint16_t)msb << 8) | (uint16_t)lsb)
/* Macro to set bits */
#define BME69X_SET_BITS(reg_data, bitname, data) \
((reg_data & ~(bitname##_MSK)) | \
((data << bitname##_POS) & bitname##_MSK))
/* Macro to get bits */
#define BME69X_GET_BITS(reg_data, bitname) ((reg_data & (bitname##_MSK)) >> \
(bitname##_POS))
/* Macro to set bits starting from position 0 */
#define BME69X_SET_BITS_POS_0(reg_data, bitname, data) \
((reg_data & ~(bitname##_MSK)) | \
(data & bitname##_MSK))
/* Macro to get bits starting from position 0 */
#define BME69X_GET_BITS_POS_0(reg_data, bitname) (reg_data & (bitname##_MSK))
/**
* BME69X_INTF_RET_TYPE is the read/write interface return type which can be overwritten by the build system.
* The default is set to int8_t.
*/
#ifndef BME69X_INTF_RET_TYPE
#define BME69X_INTF_RET_TYPE int8_t
#endif
/**
* BME69X_INTF_RET_SUCCESS is the success return value read/write interface return type which can be
* overwritten by the build system. The default is set to 0. It is used to check for a successful
* execution of the read/write functions
*/
#ifndef BME69X_INTF_RET_SUCCESS
#define BME69X_INTF_RET_SUCCESS INT8_C(0)
#endif
/********************************************************* */
/*! Function Pointers */
/********************************************************* */
/*!
* @brief Bus communication function pointer which should be mapped to
* the platform specific read functions of the user
*
* @param[in] reg_addr : 8bit register address of the sensor
* @param[out] reg_data : Data from the specified address
* @param[in] length : Length of the reg_data array
* @param[in,out] intf_ptr : Void pointer that can enable the linking of descriptors
* for interface related callbacks
* @retval 0 for Success
* @retval Non-zero for Failure
*/
typedef BME69X_INTF_RET_TYPE (*bme69x_read_fptr_t)(uint8_t reg_addr, uint8_t *reg_data, uint32_t length,
void *intf_ptr);
/*!
* @brief Bus communication function pointer which should be mapped to
* the platform specific write functions of the user
*
* @param[in] reg_addr : 8bit register address of the sensor
* @param[out] reg_data : Data to the specified address
* @param[in] length : Length of the reg_data array
* @param[in,out] intf_ptr : Void pointer that can enable the linking of descriptors
* for interface related callbacks
* @retval 0 for Success
* @retval Non-zero for Failure
*
*/
typedef BME69X_INTF_RET_TYPE (*bme69x_write_fptr_t)(uint8_t reg_addr, const uint8_t *reg_data, uint32_t length,
void *intf_ptr);
/*!
* @brief Delay function pointer which should be mapped to
* delay function of the user
*
* @param period - The time period in microseconds
* @param[in,out] intf_ptr : Void pointer that can enable the linking of descriptors
* for interface related callbacks
*/
typedef void (*bme69x_delay_us_fptr_t)(uint32_t period, void *intf_ptr);
/*
* @brief Generic communication function pointer
* @param[in] dev_id: Place holder to store the id of the device structure
* Can be used to store the index of the Chip select or
* I2C address of the device.
* @param[in] reg_addr: Used to select the register the where data needs to
* be read from or written to.
* @param[in,out] reg_data: Data array to read/write
* @param[in] len: Length of the data array
*/
/*
* @brief Interface selection Enumerations
*/
enum bme69x_intf {
/*! SPI interface */
BME69X_SPI_INTF,
/*! I2C interface */
BME69X_I2C_INTF
};
/* Structure definitions */
/*
* @brief Sensor field data structure
*/
struct bme69x_data
{
/*! Contains new_data, gasm_valid & heat_stab */
uint8_t status;
/*! The index of the heater profile used */
uint8_t gas_index;
/*! Measurement index to track order */
uint8_t meas_index;
/*! Heater resistance */
uint8_t res_heat;
/*! Current DAC */
uint8_t idac;
/*! Gas wait period */
uint8_t gas_wait;
#ifndef BME69X_USE_FPU
/*! Temperature in degree celsius x100 */
int16_t temperature;
/*! Pressure in Pascal */
uint32_t pressure;
/*! Humidity in % relative humidity x1000 */
uint32_t humidity;
/*! Gas resistance in Ohms */
uint32_t gas_resistance;
/*! Intermediate temperature co-efficient for pressure calculation */
uint32_t t_lin;
#else
/*! Temperature in degree celsius */
float temperature;
/*! Pressure in Pascal */
float pressure;
/*! Humidity in % relative humidity x1000 */
float humidity;
/*! Gas resistance in Ohms */
float gas_resistance;
#endif
};
struct bme69x_calib_data
{
/*! Calibration coefficient for the humidity sensor */
int16_t par_h1;
/*! Calibration coefficient for the humidity sensor */
int8_t par_h2;
/*! Calibration coefficient for the humidity sensor */
uint8_t par_h3;
/*! Calibration coefficient for the humidity sensor */
int8_t par_h4;
/*! Calibration coefficient for the humidity sensor */
int16_t par_h5;
/*! Calibration coefficient for the humidity sensor */
uint8_t par_h6;
/*! Calibration coefficient for the gas sensor */
int8_t par_g1;
/*! Calibration coefficient for the gas sensor */
int16_t par_g2;
/*! Calibration coefficient for the gas sensor */
int8_t par_g3;
/*! Calibration coefficient for the temperature sensor */
uint16_t par_t1;
/*! Calibration coefficient for the temperature sensor */
uint16_t par_t2;
/*! Calibration coefficient for the temperature sensor */
int8_t par_t3;
/*! Calibration coefficient for the pressure sensor */
int16_t par_p5;
/*! Calibration coefficient for the pressure sensor */
int16_t par_p6;
/*! Calibration coefficient for the pressure sensor */
int8_t par_p7;
/*! Calibration coefficient for the pressure sensor */
int8_t par_p8;
/*! Calibration coefficient for the pressure sensor */
uint16_t par_p1;
/*! Calibration coefficient for the pressure sensor */
uint16_t par_p2;
/*! Calibration coefficient for the pressure sensor */
int8_t par_p3;
/*! Calibration coefficient for the pressure sensor */
int8_t par_p4;
/*! Calibration coefficient for the pressure sensor */
int16_t par_p9;
/*! Calibration coefficient for the pressure sensor */
int8_t par_p10;
int8_t par_p11;
#ifndef BME69X_USE_FPU
/*! Variable to store the intermediate temperature coefficient */
int32_t t_fine;
#else
/*! Variable to store the intermediate temperature coefficient */
float t_fine;
#endif
/*! Heater resistance range coefficient */
uint8_t res_heat_range;
/*! Heater resistance value coefficient */
int8_t res_heat_val;
/*! Gas resistance range switching error coefficient */
int8_t range_sw_err;
};
/*
* @brief BME69X sensor settings structure which comprises of ODR,
* over-sampling and filter settings.
*/
struct bme69x_conf
{
/*! Humidity oversampling. Refer @ref osx*/
uint8_t os_hum;
/*! Temperature oversampling. Refer @ref osx */
uint8_t os_temp;
/*! Pressure oversampling. Refer @ref osx */
uint8_t os_pres;
/*! Filter coefficient. Refer @ref filter*/
uint8_t filter;
/*!
* Standby time between sequential mode measurement profiles.
* Refer @ref odr
*/
uint8_t odr;
};
/*
* @brief BME69X gas heater configuration
*/
struct bme69x_heatr_conf
{
/*! Enable gas measurement. Refer @ref en_dis */
uint8_t enable;
/*! Store the heater temperature for forced mode degree Celsius */
uint16_t heatr_temp;
/*! Store the heating duration for forced mode in milliseconds */
uint16_t heatr_dur;
/*! Store the heater temperature profile in degree Celsius */
uint16_t *heatr_temp_prof;
/*! Store the heating duration profile in milliseconds */
uint16_t *heatr_dur_prof;
/*! Variable to store the length of the heating profile */
uint8_t profile_len;
/*!
* Variable to store heating duration for parallel mode
* in milliseconds
*/
uint16_t shared_heatr_dur;
};
/*
* @brief BME69X device structure
*/
struct bme69x_dev
{
/*! Chip Id */
uint8_t chip_id;
/*!
* The interface pointer is used to enable the user
* to link their interface descriptors for reference during the
* implementation of the read and write interfaces to the
* hardware.
*/
void *intf_ptr;
/*!
* Variant id
* ----------------------------------------
* Value | Variant
* ----------------------------------------
* 0 | BME69X_VARIANT_GAS_LOW
* 1 | BME69X_VARIANT_GAS_HIGH
* ----------------------------------------
*/
uint32_t variant_id;
/*! SPI/I2C interface */
enum bme69x_intf intf;
/*! Memory page used */
uint8_t mem_page;
/*! Ambient temperature in Degree C*/
int8_t amb_temp;
/*! Sensor calibration data */
struct bme69x_calib_data calib;
/*! Read function pointer */
bme69x_read_fptr_t read;
/*! Write function pointer */
bme69x_write_fptr_t write;
/*! Delay function pointer */
bme69x_delay_us_fptr_t delay_us;
/*! To store interface pointer error */
BME69X_INTF_RET_TYPE intf_rslt;
/*! Store the info messages */
uint8_t info_msg;
};
#endif /* BME69X_DEFS_H_ */
/*! @endcond */