WXK
2023-09-08 00fc23c0b2c7b7dfd6df3e9fb9e385ec949cd8cc
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
/*
 ******************************************************************************
 * @file    lis3dh_reg.h
 * @author  Sensors Software Solution Team
 * @brief   This file contains all the functions prototypes for the
 *          lis3dh_reg.c driver.
 ******************************************************************************
 * @attention
 *
 * <h2><center>&copy; Copyright (c) 2019 STMicroelectronics.
 * All rights reserved.</center></h2>
 *
 * This software component is licensed by ST under BSD 3-Clause license,
 * the "License"; You may not use this file except in compliance with the
 * License. You may obtain a copy of the License at:
 *                        opensource.org/licenses/BSD-3-Clause
 *
 ******************************************************************************
 */
 
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef LIS3DH_REGS_H
#define LIS3DH_REGS_H
 
#ifdef __cplusplus
  extern "C" {
#endif
 
/* Includes ------------------------------------------------------------------*/
#include <stdint.h>
#include <math.h>
 
/** @addtogroup LIS3DH
  * @{
  *
  */
 
/** @defgroup STMicroelectronics sensors common types
  * @{
  *
  */
 
#ifndef MEMS_SHARED_TYPES
#define MEMS_SHARED_TYPES
 
typedef struct{
  uint8_t bit0       : 1;
  uint8_t bit1       : 1;
  uint8_t bit2       : 1;
  uint8_t bit3       : 1;
  uint8_t bit4       : 1;
  uint8_t bit5       : 1;
  uint8_t bit6       : 1;
  uint8_t bit7       : 1;
} bitwise_t;
 
#define PROPERTY_DISABLE                (0U)
#define PROPERTY_ENABLE                 (1U)
 
/** @addtogroup  Interfaces_Functions
  * @brief       This section provide a set of functions used to read and
  *              write a generic register of the device.
  *              MANDATORY: return 0 -> no Error.
  * @{
  *
  */
 
typedef int32_t (*stmdev_write_ptr)(void *, uint8_t, uint8_t*, uint16_t);
typedef int32_t (*stmdev_read_ptr) (void *, uint8_t, uint8_t*, uint16_t);
 
typedef struct {
  /** Component mandatory fields **/
  stmdev_write_ptr  write_reg;
  stmdev_read_ptr   read_reg;
  /** Customizable optional pointer **/
  void *handle;
} stmdev_ctx_t;
 
/**
  * @}
  *
  */
 
#endif /* MEMS_SHARED_TYPES */
 
#ifndef MEMS_UCF_SHARED_TYPES
#define MEMS_UCF_SHARED_TYPES
 
/** @defgroup    Generic address-data structure definition
  * @brief       This structure is useful to load a predefined configuration
  *              of a sensor.
    *              You can create a sensor configuration by your own or using 
    *              Unico / Unicleo tools available on STMicroelectronics
    *              web site.
  *
  * @{
  *
  */
 
typedef struct {
  uint8_t address;
  uint8_t data;
} ucf_line_t;
 
/**
  * @}
  *
  */
 
#endif /* MEMS_UCF_SHARED_TYPES */
 
/**
  * @}
  *
  */
 
/** @defgroup LIS3DH_Infos
  * @{
  *
  */
 
/** I2C Device Address 8 bit format if SA0=0 -> 31 if SA0=1 -> 33 **/
#define LIS3DH_I2C_ADD_L   0x31U
#define LIS3DH_I2C_ADD_H   0x33U
 
/** Device Identification (Who am I) **/
#define LIS3DH_ID          0x33U
 
/**
  * @}
  *
  */
 
#define LIS3DH_STATUS_REG_AUX        0x07U
typedef struct {
  uint8_t _1da              : 1;
  uint8_t _2da              : 1;
  uint8_t _3da              : 1;
  uint8_t _321da            : 1;
  uint8_t _1or              : 1;
  uint8_t _2or              : 1;
  uint8_t _3or              : 1;
  uint8_t _321or            : 1;
} lis3dh_status_reg_aux_t;
 
#define LIS3DH_OUT_ADC1_L            0x08U
#define LIS3DH_OUT_ADC1_H            0x09U
#define LIS3DH_OUT_ADC2_L            0x0AU
#define LIS3DH_OUT_ADC2_H            0x0BU
#define LIS3DH_OUT_ADC3_L            0x0CU
#define LIS3DH_OUT_ADC3_H            0x0DU
#define LIS3DH_WHO_AM_I              0x0FU
 
#define LIS3DH_CTRL_REG0             0x1EU
typedef struct {
  uint8_t not_used_01       : 7;
  uint8_t sdo_pu_disc       : 1;
} lis3dh_ctrl_reg0_t;
 
#define LIS3DH_TEMP_CFG_REG          0x1FU
typedef struct {
  uint8_t not_used_01       : 6;
  uint8_t adc_pd            : 1;
  uint8_t temp_en           : 1;
} lis3dh_temp_cfg_reg_t;
 
#define LIS3DH_CTRL_REG1             0x20U
typedef struct {
  uint8_t xen               : 1;
  uint8_t yen               : 1;
  uint8_t zen               : 1;
  uint8_t lpen              : 1;
  uint8_t odr               : 4;
} lis3dh_ctrl_reg1_t;
 
#define LIS3DH_CTRL_REG2             0x21U
typedef struct {
  uint8_t hp                : 3; /* HPCLICK + HP_IA2 + HP_IA1 -> HP */
  uint8_t fds               : 1;
  uint8_t hpcf              : 2;
  uint8_t hpm               : 2;
} lis3dh_ctrl_reg2_t;
 
#define LIS3DH_CTRL_REG3             0x22U
typedef struct {
  uint8_t not_used_01       : 1;
  uint8_t i1_overrun        : 1;
  uint8_t i1_wtm            : 1;
  uint8_t i1_321da          : 1;
  uint8_t i1_zyxda          : 1;
  uint8_t i1_ia2            : 1;
  uint8_t i1_ia1            : 1;
  uint8_t i1_click          : 1;
} lis3dh_ctrl_reg3_t;
 
#define LIS3DH_CTRL_REG4             0x23U
typedef struct {
  uint8_t sim               : 1;
  uint8_t st                : 2;
  uint8_t hr                : 1;
  uint8_t fs                : 2;
  uint8_t ble               : 1;
  uint8_t bdu               : 1;
} lis3dh_ctrl_reg4_t;
 
#define LIS3DH_CTRL_REG5             0x24U
typedef struct {
  uint8_t d4d_int2          : 1;
  uint8_t lir_int2          : 1;
  uint8_t d4d_int1          : 1;
  uint8_t lir_int1          : 1;
  uint8_t not_used_01       : 2;
  uint8_t fifo_en           : 1;
  uint8_t boot              : 1;
} lis3dh_ctrl_reg5_t;
 
#define LIS3DH_CTRL_REG6            0x25U
typedef struct {
  uint8_t not_used_01       : 1;
  uint8_t int_polarity      : 1;
  uint8_t not_used_02       : 1;
  uint8_t i2_act            : 1;
  uint8_t i2_boot           : 1;
  uint8_t i2_ia2            : 1;
  uint8_t i2_ia1            : 1;
  uint8_t i2_click          : 1;
} lis3dh_ctrl_reg6_t;
 
#define LIS3DH_REFERENCE            0x26U
#define LIS3DH_STATUS_REG           0x27U
typedef struct {
  uint8_t xda               : 1;
  uint8_t yda               : 1;
  uint8_t zda               : 1;
  uint8_t zyxda             : 1;
  uint8_t _xor              : 1;
  uint8_t yor               : 1;
  uint8_t zor               : 1;
  uint8_t zyxor             : 1;
} lis3dh_status_reg_t;
 
#define LIS3DH_OUT_X_L              0x28U
#define LIS3DH_OUT_X_H              0x29U
#define LIS3DH_OUT_Y_L              0x2AU
#define LIS3DH_OUT_Y_H              0x2BU
#define LIS3DH_OUT_Z_L              0x2CU
#define LIS3DH_OUT_Z_H              0x2DU
#define LIS3DH_FIFO_CTRL_REG        0x2EU
typedef struct {
  uint8_t fth               : 5;
  uint8_t tr                : 1;
  uint8_t fm                : 2;
} lis3dh_fifo_ctrl_reg_t;
 
#define LIS3DH_FIFO_SRC_REG         0x2FU
typedef struct {
  uint8_t fss               : 5;
  uint8_t empty             : 1;
  uint8_t ovrn_fifo         : 1;
  uint8_t wtm               : 1;
} lis3dh_fifo_src_reg_t;
 
#define LIS3DH_INT1_CFG             0x30U
typedef struct {
  uint8_t xlie              : 1;
  uint8_t xhie              : 1;
  uint8_t ylie              : 1;
  uint8_t yhie              : 1;
  uint8_t zlie              : 1;
  uint8_t zhie              : 1;
  uint8_t _6d               : 1;
  uint8_t aoi               : 1;
} lis3dh_int1_cfg_t;
 
#define LIS3DH_INT1_SRC             0x31U
typedef struct {
  uint8_t xl                : 1;
  uint8_t xh                : 1;
  uint8_t yl                : 1;
  uint8_t yh                : 1;
  uint8_t zl                : 1;
  uint8_t zh                : 1;
  uint8_t ia                : 1;
  uint8_t not_used_01       : 1;
} lis3dh_int1_src_t;
 
#define LIS3DH_INT1_THS             0x32U
typedef struct {
  uint8_t ths               : 7;
  uint8_t not_used_01       : 1;
} lis3dh_int1_ths_t;
 
#define LIS3DH_INT1_DURATION        0x33U
typedef struct {
  uint8_t d                 : 7;
  uint8_t not_used_01       : 1;
} lis3dh_int1_duration_t;
 
#define LIS3DH_INT2_CFG             0x34U
typedef struct {
  uint8_t xlie              : 1;
  uint8_t xhie              : 1;
  uint8_t ylie              : 1;
  uint8_t yhie              : 1;
  uint8_t zlie              : 1;
  uint8_t zhie              : 1;
  uint8_t _6d               : 1;
  uint8_t aoi               : 1;
} lis3dh_int2_cfg_t;
 
#define LIS3DH_INT2_SRC             0x35U
typedef struct {
  uint8_t xl                : 1;
  uint8_t xh                : 1;
  uint8_t yl                : 1;
  uint8_t yh                : 1;
  uint8_t zl                : 1;
  uint8_t zh                : 1;
  uint8_t ia                : 1;
  uint8_t not_used_01       : 1;
} lis3dh_int2_src_t;
 
#define LIS3DH_INT2_THS             0x36U
typedef struct {
  uint8_t ths               : 7;
  uint8_t not_used_01       : 1;
} lis3dh_int2_ths_t;
 
#define LIS3DH_INT2_DURATION        0x37U
typedef struct {
  uint8_t d                 : 7;
  uint8_t not_used_01       : 1;
} lis3dh_int2_duration_t;
 
#define LIS3DH_CLICK_CFG            0x38U
typedef struct {
  uint8_t xs                : 1;
  uint8_t xd                : 1;
  uint8_t ys                : 1;
  uint8_t yd                : 1;
  uint8_t zs                : 1;
  uint8_t zd                : 1;
  uint8_t not_used_01       : 2;
} lis3dh_click_cfg_t;
 
#define LIS3DH_CLICK_SRC            0x39U
typedef struct {
  uint8_t x                 : 1;
  uint8_t y                 : 1;
  uint8_t z                 : 1;
  uint8_t sign              : 1;
  uint8_t sclick            : 1;
  uint8_t dclick            : 1;
  uint8_t ia                : 1;
  uint8_t not_used_01       : 1;
} lis3dh_click_src_t;
 
#define LIS3DH_CLICK_THS            0x3AU
typedef struct {
  uint8_t ths               : 7;
  uint8_t lir_click         : 1;
} lis3dh_click_ths_t;
 
#define LIS3DH_TIME_LIMIT           0x3BU
typedef struct {
  uint8_t tli               : 7;
  uint8_t not_used_01       : 1;
} lis3dh_time_limit_t;
 
#define LIS3DH_TIME_LATENCY         0x3CU
typedef struct {
  uint8_t tla               : 8;
} lis3dh_time_latency_t;
 
#define LIS3DH_TIME_WINDOW          0x3DU
typedef struct {
  uint8_t tw                : 8;
} lis3dh_time_window_t;
 
#define LIS3DH_ACT_THS              0x3EU
typedef struct {
  uint8_t acth              : 7;
  uint8_t not_used_01       : 1;
} lis3dh_act_ths_t;
 
#define LIS3DH_ACT_DUR              0x3FU
typedef struct {
  uint8_t actd              : 8;
} lis3dh_act_dur_t;
 
/**
  * @defgroup LIS3DH_Register_Union
  * @brief    This union group all the registers that has a bitfield
  *           description.
  *           This union is usefull but not need by the driver.
  *
  *           REMOVING this union you are complient with:
  *           MISRA-C 2012 [Rule 19.2] -> " Union are not allowed "
  *
  * @{
  *
  */
typedef union{
  lis3dh_status_reg_aux_t status_reg_aux;
  lis3dh_ctrl_reg0_t      ctrl_reg0;
  lis3dh_temp_cfg_reg_t   temp_cfg_reg;
  lis3dh_ctrl_reg1_t      ctrl_reg1;
  lis3dh_ctrl_reg2_t      ctrl_reg2;
  lis3dh_ctrl_reg3_t      ctrl_reg3;
  lis3dh_ctrl_reg4_t      ctrl_reg4;
  lis3dh_ctrl_reg5_t      ctrl_reg5;
  lis3dh_ctrl_reg6_t      ctrl_reg6;
  lis3dh_status_reg_t     status_reg;
  lis3dh_fifo_ctrl_reg_t  fifo_ctrl_reg;
  lis3dh_fifo_src_reg_t   fifo_src_reg;
  lis3dh_int1_cfg_t       int1_cfg;
  lis3dh_int1_src_t       int1_src;
  lis3dh_int1_ths_t       int1_ths;
  lis3dh_int1_duration_t  int1_duration;
  lis3dh_int2_cfg_t       int2_cfg;
  lis3dh_int2_src_t       int2_src;
  lis3dh_int2_ths_t       int2_ths;
  lis3dh_int2_duration_t  int2_duration;
  lis3dh_click_cfg_t      click_cfg;
  lis3dh_click_src_t      click_src;
  lis3dh_click_ths_t      click_ths;
  lis3dh_time_limit_t     time_limit;
  lis3dh_time_latency_t   time_latency;
  lis3dh_time_window_t    time_window;
  lis3dh_act_ths_t        act_ths;
  lis3dh_act_dur_t        act_dur;
  bitwise_t                 bitwise;
  uint8_t                   byte;
} lis3dh_reg_t;
 
/**
  * @}
  *
  */
 
int32_t lis3dh_read_reg(stmdev_ctx_t *ctx, uint8_t reg, uint8_t* data,
                          uint16_t len);
int32_t lis3dh_write_reg(stmdev_ctx_t *ctx, uint8_t reg, uint8_t* data,
                           uint16_t len);
 
extern float lis3dh_from_fs2_hr_to_mg(int16_t lsb);
extern float lis3dh_from_fs4_hr_to_mg(int16_t lsb);
extern float lis3dh_from_fs8_hr_to_mg(int16_t lsb);
extern float lis3dh_from_fs16_hr_to_mg(int16_t lsb);
extern float lis3dh_from_lsb_hr_to_celsius(int16_t lsb);
 
extern float lis3dh_from_fs2_nm_to_mg(int16_t lsb);
extern float lis3dh_from_fs4_nm_to_mg(int16_t lsb);
extern float lis3dh_from_fs8_nm_to_mg(int16_t lsb);
extern float lis3dh_from_fs16_nm_to_mg(int16_t lsb);
extern float lis3dh_from_lsb_nm_to_celsius(int16_t lsb);
 
extern float lis3dh_from_fs2_lp_to_mg(int16_t lsb);
extern float lis3dh_from_fs4_lp_to_mg(int16_t lsb);
extern float lis3dh_from_fs8_lp_to_mg(int16_t lsb);
extern float lis3dh_from_fs16_lp_to_mg(int16_t lsb);
extern float lis3dh_from_lsb_lp_to_celsius(int16_t lsb);
 
int32_t lis3dh_temp_status_reg_get(stmdev_ctx_t *ctx, uint8_t *buff);
int32_t lis3dh_temp_data_ready_get(stmdev_ctx_t *ctx, uint8_t *val);
 
int32_t lis3dh_temp_data_ovr_get(stmdev_ctx_t *ctx, uint8_t *val);
 
int32_t lis3dh_temperature_raw_get(stmdev_ctx_t *ctx, uint16_t *buff);
 
int32_t lis3dh_adc_raw_get(stmdev_ctx_t *ctx, uint8_t *buff);
 
typedef enum {
  LIS3DH_AUX_DISABLE          = 0,
  LIS3DH_AUX_ON_TEMPERATURE   = 3,
  LIS3DH_AUX_ON_PADS          = 1,
} lis3dh_temp_en_t;
int32_t lis3dh_aux_adc_set(stmdev_ctx_t *ctx, lis3dh_temp_en_t val);
int32_t lis3dh_aux_adc_get(stmdev_ctx_t *ctx, lis3dh_temp_en_t *val);
 
typedef enum {
  LIS3DH_HR_12bit   = 0,
  LIS3DH_NM_10bit   = 1,
  LIS3DH_LP_8bit    = 2,
} lis3dh_op_md_t;
int32_t lis3dh_operating_mode_set(stmdev_ctx_t *ctx,
                                    lis3dh_op_md_t val);
int32_t lis3dh_operating_mode_get(stmdev_ctx_t *ctx,
                                    lis3dh_op_md_t *val);
 
typedef enum {
  LIS3DH_POWER_DOWN                      = 0x00,
  LIS3DH_ODR_1Hz                         = 0x01,
  LIS3DH_ODR_10Hz                        = 0x02,
  LIS3DH_ODR_25Hz                        = 0x03,
  LIS3DH_ODR_50Hz                        = 0x04,
  LIS3DH_ODR_100Hz                       = 0x05,
  LIS3DH_ODR_200Hz                       = 0x06,
  LIS3DH_ODR_400Hz                       = 0x07,
  LIS3DH_ODR_1kHz620_LP                  = 0x08,
  LIS3DH_ODR_5kHz376_LP_1kHz344_NM_HP    = 0x09,
} lis3dh_odr_t;
int32_t lis3dh_data_rate_set(stmdev_ctx_t *ctx, lis3dh_odr_t val);
int32_t lis3dh_data_rate_get(stmdev_ctx_t *ctx, lis3dh_odr_t *val);
 
int32_t lis3dh_high_pass_on_outputs_set(stmdev_ctx_t *ctx, uint8_t val);
int32_t lis3dh_high_pass_on_outputs_get(stmdev_ctx_t *ctx, uint8_t *val);
 
typedef enum {
  LIS3DH_AGGRESSIVE  = 0,
  LIS3DH_STRONG      = 1,
  LIS3DH_MEDIUM      = 2,
  LIS3DH_LIGHT       = 3,
} lis3dh_hpcf_t;
int32_t lis3dh_high_pass_bandwidth_set(stmdev_ctx_t *ctx,
                                         lis3dh_hpcf_t val);
int32_t lis3dh_high_pass_bandwidth_get(stmdev_ctx_t *ctx,
                                         lis3dh_hpcf_t *val);
 
typedef enum {
  LIS3DH_NORMAL_WITH_RST  = 0,
  LIS3DH_REFERENCE_MODE   = 1,
  LIS3DH_NORMAL           = 2,
  LIS3DH_AUTORST_ON_INT   = 3,
} lis3dh_hpm_t;
int32_t lis3dh_high_pass_mode_set(stmdev_ctx_t *ctx, lis3dh_hpm_t val);
int32_t lis3dh_high_pass_mode_get(stmdev_ctx_t *ctx, lis3dh_hpm_t *val);
 
typedef enum {
  LIS3DH_2g   = 0,
  LIS3DH_4g   = 1,
  LIS3DH_8g   = 2,
  LIS3DH_16g  = 3,
} lis3dh_fs_t;
int32_t lis3dh_full_scale_set(stmdev_ctx_t *ctx, lis3dh_fs_t val);
int32_t lis3dh_full_scale_get(stmdev_ctx_t *ctx, lis3dh_fs_t *val);
 
int32_t lis3dh_block_data_update_set(stmdev_ctx_t *ctx, uint8_t val);
int32_t lis3dh_block_data_update_get(stmdev_ctx_t *ctx, uint8_t *val);
 
int32_t lis3dh_filter_reference_set(stmdev_ctx_t *ctx, uint8_t *buff);
int32_t lis3dh_filter_reference_get(stmdev_ctx_t *ctx, uint8_t *buff);
 
int32_t lis3dh_xl_data_ready_get(stmdev_ctx_t *ctx, uint8_t *val);
 
int32_t lis3dh_xl_data_ovr_get(stmdev_ctx_t *ctx, uint8_t *val);
 
int32_t lis3dh_acceleration_raw_get(stmdev_ctx_t *ctx, uint8_t *buff);
 
int32_t lis3dh_device_id_get(stmdev_ctx_t *ctx, uint8_t *buff);
 
typedef enum {
  LIS3DH_ST_DISABLE   = 0,
  LIS3DH_ST_POSITIVE  = 1,
  LIS3DH_ST_NEGATIVE  = 2,
} lis3dh_st_t;
int32_t lis3dh_self_test_set(stmdev_ctx_t *ctx, lis3dh_st_t val);
int32_t lis3dh_self_test_get(stmdev_ctx_t *ctx, lis3dh_st_t *val);
 
typedef enum {
  LIS3DH_LSB_AT_LOW_ADD = 0,
  LIS3DH_MSB_AT_LOW_ADD = 1,
} lis3dh_ble_t;
int32_t lis3dh_data_format_set(stmdev_ctx_t *ctx, lis3dh_ble_t val);
int32_t lis3dh_data_format_get(stmdev_ctx_t *ctx, lis3dh_ble_t *val);
 
int32_t lis3dh_boot_set(stmdev_ctx_t *ctx, uint8_t val);
int32_t lis3dh_boot_get(stmdev_ctx_t *ctx, uint8_t *val);
 
int32_t lis3dh_status_get(stmdev_ctx_t *ctx, lis3dh_status_reg_t *val);
 
int32_t lis3dh_int1_gen_conf_set(stmdev_ctx_t *ctx,
                                   lis3dh_int1_cfg_t *val);
int32_t lis3dh_int1_gen_conf_get(stmdev_ctx_t *ctx,
                                   lis3dh_int1_cfg_t *val);
 
int32_t lis3dh_int1_gen_source_get(stmdev_ctx_t *ctx,
                                     lis3dh_int1_src_t *val);
 
int32_t lis3dh_int1_gen_threshold_set(stmdev_ctx_t *ctx, uint8_t val);
int32_t lis3dh_int1_gen_threshold_get(stmdev_ctx_t *ctx, uint8_t *val);
 
int32_t lis3dh_int1_gen_duration_set(stmdev_ctx_t *ctx, uint8_t val);
int32_t lis3dh_int1_gen_duration_get(stmdev_ctx_t *ctx, uint8_t *val);
 
int32_t lis3dh_int2_gen_conf_set(stmdev_ctx_t *ctx,
                                   lis3dh_int2_cfg_t *val);
int32_t lis3dh_int2_gen_conf_get(stmdev_ctx_t *ctx,
                                   lis3dh_int2_cfg_t *val);
 
int32_t lis3dh_int2_gen_source_get(stmdev_ctx_t *ctx,
                                     lis3dh_int2_src_t *val);
 
int32_t lis3dh_int2_gen_threshold_set(stmdev_ctx_t *ctx, uint8_t val);
int32_t lis3dh_int2_gen_threshold_get(stmdev_ctx_t *ctx, uint8_t *val);
 
int32_t lis3dh_int2_gen_duration_set(stmdev_ctx_t *ctx, uint8_t val);
int32_t lis3dh_int2_gen_duration_get(stmdev_ctx_t *ctx, uint8_t *val);
 
typedef enum {
  LIS3DH_DISC_FROM_INT_GENERATOR  = 0,
  LIS3DH_ON_INT1_GEN              = 1,
  LIS3DH_ON_INT2_GEN              = 2,
  LIS3DH_ON_TAP_GEN               = 4,
  LIS3DH_ON_INT1_INT2_GEN         = 3,
  LIS3DH_ON_INT1_TAP_GEN          = 5,
  LIS3DH_ON_INT2_TAP_GEN          = 6,
  LIS3DH_ON_INT1_INT2_TAP_GEN     = 7,
} lis3dh_hp_t;
int32_t lis3dh_high_pass_int_conf_set(stmdev_ctx_t *ctx,
                                        lis3dh_hp_t val);
int32_t lis3dh_high_pass_int_conf_get(stmdev_ctx_t *ctx,
                                        lis3dh_hp_t *val);
 
int32_t lis3dh_pin_int1_config_set(stmdev_ctx_t *ctx,
                                     lis3dh_ctrl_reg3_t *val);
int32_t lis3dh_pin_int1_config_get(stmdev_ctx_t *ctx,
                                     lis3dh_ctrl_reg3_t *val);
 
int32_t lis3dh_int2_pin_detect_4d_set(stmdev_ctx_t *ctx, uint8_t val);
int32_t lis3dh_int2_pin_detect_4d_get(stmdev_ctx_t *ctx, uint8_t *val);
 
typedef enum {
  LIS3DH_INT2_PULSED   = 0,
  LIS3DH_INT2_LATCHED  = 1,
} lis3dh_lir_int2_t;
int32_t lis3dh_int2_pin_notification_mode_set(stmdev_ctx_t *ctx,
                                                lis3dh_lir_int2_t val);
int32_t lis3dh_int2_pin_notification_mode_get(stmdev_ctx_t *ctx,
                                                lis3dh_lir_int2_t *val);
 
int32_t lis3dh_int1_pin_detect_4d_set(stmdev_ctx_t *ctx, uint8_t val);
int32_t lis3dh_int1_pin_detect_4d_get(stmdev_ctx_t *ctx, uint8_t *val);
 
typedef enum {
  LIS3DH_INT1_PULSED   = 0,
  LIS3DH_INT1_LATCHED  = 1,
} lis3dh_lir_int1_t;
int32_t lis3dh_int1_pin_notification_mode_set(stmdev_ctx_t *ctx,
                                                lis3dh_lir_int1_t val);
int32_t lis3dh_int1_pin_notification_mode_get(stmdev_ctx_t *ctx,
                                                lis3dh_lir_int1_t *val);
 
int32_t lis3dh_pin_int2_config_set(stmdev_ctx_t *ctx,
                                     lis3dh_ctrl_reg6_t *val);
int32_t lis3dh_pin_int2_config_get(stmdev_ctx_t *ctx,
                                     lis3dh_ctrl_reg6_t *val);
 
int32_t lis3dh_fifo_set(stmdev_ctx_t *ctx, uint8_t val);
int32_t lis3dh_fifo_get(stmdev_ctx_t *ctx, uint8_t *val);
 
int32_t lis3dh_fifo_watermark_set(stmdev_ctx_t *ctx, uint8_t val);
int32_t lis3dh_fifo_watermark_get(stmdev_ctx_t *ctx, uint8_t *val);
 
typedef enum {
  LIS3DH_INT1_GEN = 0,
  LIS3DH_INT2_GEN = 1,
} lis3dh_tr_t;
int32_t lis3dh_fifo_trigger_event_set(stmdev_ctx_t *ctx,
                                        lis3dh_tr_t val);
int32_t lis3dh_fifo_trigger_event_get(stmdev_ctx_t *ctx,
                                        lis3dh_tr_t *val);
 
typedef enum {
  LIS3DH_BYPASS_MODE           = 0,
  LIS3DH_FIFO_MODE             = 1,
  LIS3DH_DYNAMIC_STREAM_MODE   = 2,
  LIS3DH_STREAM_TO_FIFO_MODE   = 3,
} lis3dh_fm_t;
int32_t lis3dh_fifo_mode_set(stmdev_ctx_t *ctx, lis3dh_fm_t val);
int32_t lis3dh_fifo_mode_get(stmdev_ctx_t *ctx, lis3dh_fm_t *val);
 
int32_t lis3dh_fifo_status_get(stmdev_ctx_t *ctx,
                                 lis3dh_fifo_src_reg_t *val);
 
int32_t lis3dh_fifo_data_level_get(stmdev_ctx_t *ctx, uint8_t *val);
 
int32_t lis3dh_fifo_empty_flag_get(stmdev_ctx_t *ctx, uint8_t *val);
 
int32_t lis3dh_fifo_ovr_flag_get(stmdev_ctx_t *ctx, uint8_t *val);
 
int32_t lis3dh_fifo_fth_flag_get(stmdev_ctx_t *ctx, uint8_t *val);
 
int32_t lis3dh_tap_conf_set(stmdev_ctx_t *ctx, lis3dh_click_cfg_t *val);
int32_t lis3dh_tap_conf_get(stmdev_ctx_t *ctx, lis3dh_click_cfg_t *val);
 
int32_t lis3dh_tap_source_get(stmdev_ctx_t *ctx,
                                lis3dh_click_src_t *val);
 
int32_t lis3dh_tap_threshold_set(stmdev_ctx_t *ctx, uint8_t val);
int32_t lis3dh_tap_threshold_get(stmdev_ctx_t *ctx, uint8_t *val);
 
typedef enum {
  LIS3DH_TAP_PULSED   = 0,
  LIS3DH_TAP_LATCHED  = 1,
} lis3dh_lir_click_t;
int32_t lis3dh_tap_notification_mode_set(stmdev_ctx_t *ctx,
                                           lis3dh_lir_click_t val);
int32_t lis3dh_tap_notification_mode_get(stmdev_ctx_t *ctx,
                                           lis3dh_lir_click_t *val);
 
int32_t lis3dh_shock_dur_set(stmdev_ctx_t *ctx, uint8_t val);
int32_t lis3dh_shock_dur_get(stmdev_ctx_t *ctx, uint8_t *val);
 
int32_t lis3dh_quiet_dur_set(stmdev_ctx_t *ctx, uint8_t val);
int32_t lis3dh_quiet_dur_get(stmdev_ctx_t *ctx, uint8_t *val);
 
int32_t lis3dh_double_tap_timeout_set(stmdev_ctx_t *ctx, uint8_t val);
int32_t lis3dh_double_tap_timeout_get(stmdev_ctx_t *ctx, uint8_t *val);
 
int32_t lis3dh_act_threshold_set(stmdev_ctx_t *ctx, uint8_t val);
int32_t lis3dh_act_threshold_get(stmdev_ctx_t *ctx, uint8_t *val);
 
int32_t lis3dh_act_timeout_set(stmdev_ctx_t *ctx, uint8_t val);
int32_t lis3dh_act_timeout_get(stmdev_ctx_t *ctx, uint8_t *val);
 
typedef enum {
  LIS3DH_PULL_UP_DISCONNECT  = 0,
  LIS3DH_PULL_UP_CONNECT     = 1,
} lis3dh_sdo_pu_disc_t;
int32_t lis3dh_pin_sdo_sa0_mode_set(stmdev_ctx_t *ctx,
                                      lis3dh_sdo_pu_disc_t val);
int32_t lis3dh_pin_sdo_sa0_mode_get(stmdev_ctx_t *ctx,
                                      lis3dh_sdo_pu_disc_t *val);
 
typedef enum {
  LIS3DH_SPI_4_WIRE = 0,
  LIS3DH_SPI_3_WIRE = 1,
} lis3dh_sim_t;
int32_t lis3dh_spi_mode_set(stmdev_ctx_t *ctx, lis3dh_sim_t val);
int32_t lis3dh_spi_mode_get(stmdev_ctx_t *ctx, lis3dh_sim_t *val);
 
/**
  * @}
  *
  */
 
#ifdef __cplusplus
}
#endif
 
#endif /* LIS3DH_REGS_H */
 
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/