MEMS digital output motion sensor: high-performance ultra-low-power 3-axis accelerometer for industrial applications

Dependencies:   X_NUCLEO_COMMON ST_INTERFACES

Revision:
0:13631b50eae6
Child:
1:7b1fcb1bb23d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/iis2dlpc_reg.h	Mon Nov 19 13:14:04 2018 +0000
@@ -0,0 +1,780 @@
+/*
+ ******************************************************************************
+ * @file    iis2dlpc_reg.h
+ * @author  Sensors Software Solution Team
+ * @brief   This file contains all the functions prototypes for the 
+ *          iis2dlpc_reg.c driver.
+ ******************************************************************************
+ * @attention
+ *
+ * <h2><center>&copy; COPYRIGHT(c) 2018 STMicroelectronics</center></h2>
+ *
+ * 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 STMicroelectronics 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.
+ *
+ */
+ 
+/* Define to prevent recursive inclusion -------------------------------------*/
+#ifndef IIS2DLPC_REGS_H
+#define IIS2DLPC_REGS_H
+
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+/* Includes ------------------------------------------------------------------*/
+#include <stdint.h>
+#include <math.h>
+
+/** @addtogroup IIS2DLPC
+  * @{
+  *
+  */
+
+/** @defgroup IIS2DLPC_sensors_common_types
+  * @{
+  *
+  */
+
+#ifndef MEMS_SHARED_TYPES
+#define MEMS_SHARED_TYPES
+
+/** @defgroup ST_MEMS_common_types
+  * @{
+  */
+
+/**
+  * Float typedef definition for compliance with:
+  * MISRA-C 2012 [Dir 4.6a] -> " Basic type used without typedef "
+  *
+  */
+typedef float float32_t;
+
+typedef union
+{
+  int16_t i16bit[3];
+  uint8_t u8bit[6];
+} axis3bit16_t;
+
+typedef union
+{
+  int16_t i16bit;
+  uint8_t u8bit[2];
+} axis1bit16_t;
+
+typedef union
+{
+  int32_t i32bit[3];
+  uint8_t u8bit[12];
+} axis3bit32_t;
+
+typedef union
+{
+  int32_t i32bit;
+  uint8_t u8bit[4];
+} axis1bit32_t;
+
+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                (0)
+#define PROPERTY_ENABLE                 (1)
+
+#endif /* MEMS_SHARED_TYPES*/
+
+/**
+  * @}
+  *
+  */
+
+/** @addtogroup  IIS2DLPC_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 (*iis2dlpc_write_ptr)(void *, uint8_t, uint8_t*, uint16_t);
+typedef int32_t (*iis2dlpc_read_ptr) (void *, uint8_t, uint8_t*, uint16_t);
+
+typedef struct {
+  /** Component mandatory fields **/
+  iis2dlpc_write_ptr  write_reg;
+  iis2dlpc_read_ptr   read_reg;
+  /** Customizable optional pointer **/
+  void *handle;
+} iis2dlpc_ctx_t;
+
+/**
+  * @}
+  *
+  */
+
+/** @defgroup IIS2DLPC_Infos
+  * @{
+  *
+  */
+  
+/** I2C Device Address 8 bit format  if SA0=0 -> 31 if SA0=1 -> 33 **/
+#define IIS2DLPC_I2C_ADD_L   0x31U
+#define IIS2DLPC_I2C_ADD_H   0x33U
+
+/** Device Identification (Who am I) **/
+#define IIS2DLPC_ID            0x44U
+
+/**
+  * @}
+  *
+  */
+
+#define IIS2DLPC_OUT_T_L                     0x0DU
+#define IIS2DLPC_OUT_T_H                     0x0EU
+#define IIS2DLPC_WHO_AM_I                    0x0FU
+#define IIS2DLPC_CTRL1                       0x20U
+typedef struct {
+  uint8_t lp_mode                    : 2;
+  uint8_t mode                       : 2;
+  uint8_t odr                        : 4;
+} iis2dlpc_ctrl1_t;
+
+#define IIS2DLPC_CTRL2                       0x21U
+typedef struct {
+  uint8_t sim                        : 1;
+  uint8_t i2c_disable                : 1;
+  uint8_t if_add_inc                 : 1;
+  uint8_t bdu                        : 1;
+  uint8_t cs_pu_disc                 : 1;
+  uint8_t not_used_01                : 1;
+  uint8_t soft_reset                 : 1;
+  uint8_t boot                       : 1;
+} iis2dlpc_ctrl2_t;
+
+#define IIS2DLPC_CTRL3                       0x22U
+typedef struct {
+  uint8_t slp_mode                   : 2;  /* slp_mode_sel + slp_mode_1 */
+  uint8_t not_used_01                : 1;
+  uint8_t h_lactive                  : 1;
+  uint8_t lir                        : 1;
+  uint8_t pp_od                      : 1;
+  uint8_t st                         : 2;
+} iis2dlpc_ctrl3_t;
+
+#define IIS2DLPC_CTRL4_INT1_PAD_CTRL         0x23U
+typedef struct {
+  uint8_t int1_drdy                  : 1;
+  uint8_t int1_fth                   : 1;
+  uint8_t int1_diff5                 : 1;
+  uint8_t int1_tap                   : 1;
+  uint8_t int1_ff                    : 1;
+  uint8_t int1_wu                    : 1;
+  uint8_t int1_single_tap            : 1;
+  uint8_t int1_6d                    : 1;
+} iis2dlpc_ctrl4_int1_pad_ctrl_t;
+
+#define IIS2DLPC_CTRL5_INT2_PAD_CTRL         0x24U
+typedef struct {
+  uint8_t int2_drdy                  : 1;
+  uint8_t int2_fth                   : 1;
+  uint8_t int2_diff5                 : 1;
+  uint8_t int2_ovr                   : 1;
+  uint8_t int2_drdy_t                : 1;
+  uint8_t int2_boot                  : 1;
+  uint8_t int2_sleep_chg             : 1;
+  uint8_t int2_sleep_state           : 1;
+} iis2dlpc_ctrl5_int2_pad_ctrl_t;
+
+#define IIS2DLPC_CTRL6                       0x25U
+typedef struct {
+  uint8_t not_used_01                : 2;
+  uint8_t low_noise                  : 1;
+  uint8_t fds                        : 1;
+  uint8_t fs                         : 2;
+  uint8_t bw_filt                    : 2;
+} iis2dlpc_ctrl6_t;
+
+#define IIS2DLPC_OUT_T                       0x26U
+#define IIS2DLPC_STATUS                      0x27U
+typedef struct {
+  uint8_t drdy                       : 1;
+  uint8_t ff_ia                      : 1;
+  uint8_t _6d_ia                     : 1;
+  uint8_t single_tap                 : 1;
+  uint8_t double_tap                 : 1;
+  uint8_t sleep_state                : 1;
+  uint8_t wu_ia                      : 1;
+  uint8_t fifo_ths                   : 1;
+} iis2dlpc_status_t;
+
+#define IIS2DLPC_OUT_X_L                     0x28U
+#define IIS2DLPC_OUT_X_H                     0x29U
+#define IIS2DLPC_OUT_Y_L                     0x2AU
+#define IIS2DLPC_OUT_Y_H                     0x2BU
+#define IIS2DLPC_OUT_Z_L                     0x2CU
+#define IIS2DLPC_OUT_Z_H                     0x2DU
+#define IIS2DLPC_FIFO_CTRL                   0x2EU
+typedef struct {
+  uint8_t fth                        : 5;
+  uint8_t fmode                      : 3;
+} iis2dlpc_fifo_ctrl_t;
+
+#define IIS2DLPC_FIFO_SAMPLES                0x2FU
+typedef struct {
+  uint8_t diff                       : 6;
+  uint8_t fifo_ovr                   : 1;
+  uint8_t fifo_fth                   : 1;
+} iis2dlpc_fifo_samples_t;
+
+#define IIS2DLPC_TAP_THS_X                   0x30U
+typedef struct {
+  uint8_t tap_thsx                    : 5;
+  uint8_t _6d_ths                     : 2;
+  uint8_t _4d_en                      : 1;
+} iis2dlpc_tap_ths_x_t;
+
+#define IIS2DLPC_TAP_THS_Y                   0x31U
+typedef struct {
+  uint8_t tap_thsy                   : 5;
+  uint8_t tap_prior                  : 3;
+} iis2dlpc_tap_ths_y_t;
+
+#define IIS2DLPC_TAP_THS_Z                   0x32U
+typedef struct {
+  uint8_t tap_thsz                   : 5;
+  uint8_t tap_z_en                   : 1;
+  uint8_t tap_y_en                   : 1;
+  uint8_t tap_x_en                   : 1;
+} iis2dlpc_tap_ths_z_t;
+
+#define IIS2DLPC_INT_DUR                     0x33U
+typedef struct {
+  uint8_t shock                      : 2;
+  uint8_t quiet                      : 2;
+  uint8_t latency                    : 4;
+} iis2dlpc_int_dur_t;
+
+#define IIS2DLPC_WAKE_UP_THS                 0x34U
+typedef struct {
+  uint8_t wk_ths                     : 6;
+  uint8_t sleep_on                   : 1;
+  uint8_t single_double_tap          : 1;
+} iis2dlpc_wake_up_ths_t;
+
+#define IIS2DLPC_WAKE_UP_DUR                 0x35U
+typedef struct {
+  uint8_t sleep_dur                  : 4;
+  uint8_t stationary                 : 1;
+  uint8_t wake_dur                   : 2;
+  uint8_t ff_dur                     : 1;
+} iis2dlpc_wake_up_dur_t;
+
+#define IIS2DLPC_FREE_FALL                   0x36U
+typedef struct {
+  uint8_t ff_ths                     : 3;
+  uint8_t ff_dur                     : 5;
+} iis2dlpc_free_fall_t;
+
+#define IIS2DLPC_STATUS_DUP                  0x37U
+typedef struct {
+  uint8_t drdy                       : 1;
+  uint8_t ff_ia                      : 1;
+  uint8_t _6d_ia                     : 1;
+  uint8_t single_tap                 : 1;
+  uint8_t double_tap                 : 1;
+  uint8_t sleep_state_ia             : 1;
+  uint8_t drdy_t                     : 1;
+  uint8_t ovr                        : 1;
+} iis2dlpc_status_dup_t;
+
+#define IIS2DLPC_WAKE_UP_SRC                 0x38U
+typedef struct {
+  uint8_t z_wu                       : 1;
+  uint8_t y_wu                       : 1;
+  uint8_t x_wu                       : 1;
+  uint8_t wu_ia                      : 1;
+  uint8_t sleep_state_ia             : 1;
+  uint8_t ff_ia                      : 1;
+  uint8_t not_used_01                : 2;
+} iis2dlpc_wake_up_src_t;
+
+#define IIS2DLPC_TAP_SRC                     0x39U
+typedef struct {
+  uint8_t z_tap                      : 1;
+  uint8_t y_tap                      : 1;
+  uint8_t x_tap                      : 1;
+  uint8_t tap_sign                   : 1;
+  uint8_t double_tap                 : 1;
+  uint8_t single_tap                 : 1;
+  uint8_t tap_ia                     : 1;
+  uint8_t not_used_01                : 1;
+} iis2dlpc_tap_src_t;
+
+#define IIS2DLPC_SIXD_SRC                    0x3AU
+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 _6d_ia                     : 1;
+  uint8_t not_used_01                : 1;
+} iis2dlpc_sixd_src_t;
+
+#define IIS2DLPC_ALL_INT_SRC                 0x3BU
+typedef struct {
+  uint8_t ff_ia                      : 1;
+  uint8_t wu_ia                      : 1;
+  uint8_t single_tap                 : 1;
+  uint8_t double_tap                 : 1;
+  uint8_t _6d_ia                     : 1;
+  uint8_t sleep_change_ia            : 1;
+  uint8_t not_used_01                : 2;
+} iis2dlpc_all_int_src_t;
+
+#define IIS2DLPC_X_OFS_USR                   0x3CU
+#define IIS2DLPC_Y_OFS_USR                   0x3DU
+#define IIS2DLPC_Z_OFS_USR                   0x3EU
+#define IIS2DLPC_CTRL_REG7                   0x3FU
+typedef struct {
+  uint8_t lpass_on6d                 : 1;
+  uint8_t hp_ref_mode                : 1;
+  uint8_t usr_off_w                  : 1;
+  uint8_t usr_off_on_wu              : 1;
+  uint8_t usr_off_on_out             : 1;
+  uint8_t interrupts_enable          : 1;
+  uint8_t int2_on_int1               : 1;
+  uint8_t drdy_pulsed                : 1;
+} iis2dlpc_ctrl_reg7_t;
+
+/**
+  * @defgroup IIS2DLPC_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{
+  iis2dlpc_ctrl1_t                   ctrl1;
+  iis2dlpc_ctrl2_t                   ctrl2;
+  iis2dlpc_ctrl3_t                   ctrl3;
+  iis2dlpc_ctrl4_int1_pad_ctrl_t     ctrl4_int1_pad_ctrl;
+  iis2dlpc_ctrl5_int2_pad_ctrl_t     ctrl5_int2_pad_ctrl;
+  iis2dlpc_ctrl6_t                   ctrl6;
+  iis2dlpc_status_t                  status;
+  iis2dlpc_fifo_ctrl_t               fifo_ctrl;
+  iis2dlpc_fifo_samples_t            fifo_samples;
+  iis2dlpc_tap_ths_x_t               tap_ths_x;
+  iis2dlpc_tap_ths_y_t               tap_ths_y;
+  iis2dlpc_tap_ths_z_t               tap_ths_z;
+  iis2dlpc_int_dur_t                 int_dur;
+  iis2dlpc_wake_up_ths_t             wake_up_ths;
+  iis2dlpc_wake_up_dur_t             wake_up_dur;
+  iis2dlpc_free_fall_t               free_fall;
+  iis2dlpc_status_dup_t              status_dup;
+  iis2dlpc_wake_up_src_t             wake_up_src;
+  iis2dlpc_tap_src_t                 tap_src;
+  iis2dlpc_sixd_src_t                sixd_src;
+  iis2dlpc_all_int_src_t             all_int_src;
+  iis2dlpc_ctrl_reg7_t               ctrl_reg7;
+  bitwise_t                          bitwise;
+  uint8_t                            byte;
+} iis2dlpc_reg_t;
+
+/**
+  * @}
+  *
+  */
+
+int32_t iis2dlpc_read_reg(iis2dlpc_ctx_t *ctx, uint8_t reg, uint8_t* data,
+                          uint16_t len);
+int32_t iis2dlpc_write_reg(iis2dlpc_ctx_t *ctx, uint8_t reg, uint8_t* data,
+                           uint16_t len);
+                           
+extern float iis2dlpc_from_fs2_to_mg(int16_t lsb);
+extern float iis2dlpc_from_fs4_to_mg(int16_t lsb);
+extern float iis2dlpc_from_fs8_to_mg(int16_t lsb);
+extern float iis2dlpc_from_fs16_to_mg(int16_t lsb);
+extern float iis2dlpc_from_fs2_lp1_to_mg(int16_t lsb);
+extern float iis2dlpc_from_fs4_lp1_to_mg(int16_t lsb);
+extern float iis2dlpc_from_fs8_lp1_to_mg(int16_t lsb);
+extern float iis2dlpc_from_fs16_lp1_to_mg(int16_t lsb);
+extern float iis2dlpc_from_lsb_to_celsius(int16_t lsb);
+
+typedef enum {
+  IIS2DLPC_HIGH_PERFORMANCE                    = 0x04,
+  IIS2DLPC_CONT_LOW_PWR_4                      = 0x03,
+  IIS2DLPC_CONT_LOW_PWR_3                      = 0x02,
+  IIS2DLPC_CONT_LOW_PWR_2                      = 0x01,
+  IIS2DLPC_CONT_LOW_PWR_12bit                  = 0x00,
+  IIS2DLPC_SINGLE_LOW_PWR_4                    = 0x0B,
+  IIS2DLPC_SINGLE_LOW_PWR_3                    = 0x0A,
+  IIS2DLPC_SINGLE_LOW_PWR_2                    = 0x09,
+  IIS2DLPC_SINGLE_LOW_PWR_12bit                = 0x08,
+  IIS2DLPC_HIGH_PERFORMANCE_LOW_NOISE          = 0x14,
+  IIS2DLPC_CONT_LOW_PWR_LOW_NOISE_4            = 0x13,
+  IIS2DLPC_CONT_LOW_PWR_LOW_NOISE_3            = 0x12,
+  IIS2DLPC_CONT_LOW_PWR_LOW_NOISE_2            = 0x11,
+  IIS2DLPC_CONT_LOW_PWR_LOW_NOISE_12bit        = 0x10,
+  IIS2DLPC_SINGLE_LOW_PWR_LOW_NOISE_4          = 0x1B,
+  IIS2DLPC_SINGLE_LOW_PWR_LOW_NOISE_3          = 0x1A,
+  IIS2DLPC_SINGLE_LOW_PWR_LOW_NOISE_2          = 0x19,
+  IIS2DLPC_SINGLE_LOW_LOW_NOISE_PWR_12bit      = 0x18,
+} iis2dlpc_mode_t;
+int32_t iis2dlpc_power_mode_set(iis2dlpc_ctx_t *ctx, iis2dlpc_mode_t val);
+int32_t iis2dlpc_power_mode_get(iis2dlpc_ctx_t *ctx, iis2dlpc_mode_t *val);
+
+typedef enum {
+  IIS2DLPC_XL_ODR_OFF            = 0x00,
+  IIS2DLPC_XL_ODR_1Hz6_LP_ONLY   = 0x01,
+  IIS2DLPC_XL_ODR_12Hz5          = 0x02,
+  IIS2DLPC_XL_ODR_25Hz           = 0x03,
+  IIS2DLPC_XL_ODR_50Hz           = 0x04,
+  IIS2DLPC_XL_ODR_100Hz          = 0x05,
+  IIS2DLPC_XL_ODR_200Hz          = 0x06,
+  IIS2DLPC_XL_ODR_400Hz          = 0x07,
+  IIS2DLPC_XL_ODR_800Hz          = 0x08,
+  IIS2DLPC_XL_ODR_1k6Hz          = 0x09,
+  IIS2DLPC_XL_SET_SW_TRIG        = 0x10,  /* Use this only in SINGLE mode */
+  IIS2DLPC_XL_SET_PIN_TRIG       = 0x20,  /* Use this only in SINGLE mode */
+} iis2dlpc_odr_t;
+int32_t iis2dlpc_data_rate_set(iis2dlpc_ctx_t *ctx, iis2dlpc_odr_t val);
+int32_t iis2dlpc_data_rate_get(iis2dlpc_ctx_t *ctx, iis2dlpc_odr_t *val);
+
+int32_t iis2dlpc_block_data_update_set(iis2dlpc_ctx_t *ctx, uint8_t val);
+int32_t iis2dlpc_block_data_update_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+typedef enum {
+  IIS2DLPC_2g     = 0,
+  IIS2DLPC_4g     = 1,
+  IIS2DLPC_8g     = 2,
+  IIS2DLPC_16g    = 3,
+} iis2dlpc_fs_t;
+int32_t iis2dlpc_full_scale_set(iis2dlpc_ctx_t *ctx, iis2dlpc_fs_t val);
+int32_t iis2dlpc_full_scale_get(iis2dlpc_ctx_t *ctx, iis2dlpc_fs_t *val);
+
+int32_t iis2dlpc_status_reg_get(iis2dlpc_ctx_t *ctx, iis2dlpc_status_t *val);
+
+int32_t iis2dlpc_flag_data_ready_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+typedef struct{
+  iis2dlpc_status_dup_t   status_dup;
+  iis2dlpc_wake_up_src_t  wake_up_src;
+  iis2dlpc_tap_src_t      tap_src;
+  iis2dlpc_sixd_src_t     sixd_src;
+  iis2dlpc_all_int_src_t  all_int_src;
+} iis2dlpc_all_sources_t;
+int32_t iis2dlpc_all_sources_get(iis2dlpc_ctx_t *ctx,
+                                 iis2dlpc_all_sources_t *val);
+
+int32_t iis2dlpc_usr_offset_x_set(iis2dlpc_ctx_t *ctx, uint8_t *buff);
+int32_t iis2dlpc_usr_offset_x_get(iis2dlpc_ctx_t *ctx, uint8_t *buff);
+
+int32_t iis2dlpc_usr_offset_y_set(iis2dlpc_ctx_t *ctx, uint8_t *buff);
+int32_t iis2dlpc_usr_offset_y_get(iis2dlpc_ctx_t *ctx, uint8_t *buff);
+
+int32_t iis2dlpc_usr_offset_z_set(iis2dlpc_ctx_t *ctx, uint8_t *buff);
+int32_t iis2dlpc_usr_offset_z_get(iis2dlpc_ctx_t *ctx, uint8_t *buff);
+
+typedef enum {
+  IIS2DLPC_LSb_977ug    = 0,
+  IIS2DLPC_LSb_15mg6    = 1,
+} iis2dlpc_usr_off_w_t;
+int32_t iis2dlpc_offset_weight_set(iis2dlpc_ctx_t *ctx,
+                                      iis2dlpc_usr_off_w_t val);
+int32_t iis2dlpc_offset_weight_get(iis2dlpc_ctx_t *ctx,
+                                      iis2dlpc_usr_off_w_t *val);
+
+int32_t iis2dlpc_temperature_raw_get(iis2dlpc_ctx_t *ctx, uint8_t *buff);
+
+int32_t iis2dlpc_acceleration_raw_get(iis2dlpc_ctx_t *ctx, uint8_t *buff);
+
+int32_t iis2dlpc_device_id_get(iis2dlpc_ctx_t *ctx, uint8_t *buff);
+
+int32_t iis2dlpc_auto_increment_set(iis2dlpc_ctx_t *ctx, uint8_t val);
+int32_t iis2dlpc_auto_increment_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+int32_t iis2dlpc_reset_set(iis2dlpc_ctx_t *ctx, uint8_t val);
+int32_t iis2dlpc_reset_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+int32_t iis2dlpc_boot_set(iis2dlpc_ctx_t *ctx, uint8_t val);
+int32_t iis2dlpc_boot_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+typedef enum {
+  IIS2DLPC_XL_ST_DISABLE      = 0,
+  IIS2DLPC_XL_ST_POSITIVE     = 1,
+  IIS2DLPC_XL_ST_NEGATIVE     = 2,
+} iis2dlpc_st_t;
+int32_t iis2dlpc_self_test_set(iis2dlpc_ctx_t *ctx, iis2dlpc_st_t val);
+int32_t iis2dlpc_self_test_get(iis2dlpc_ctx_t *ctx, iis2dlpc_st_t *val);
+
+typedef enum {
+  IIS2DLPC_DRDY_LATCHED   = 0,
+  IIS2DLPC_DRDY_PULSED    = 1,
+} iis2dlpc_drdy_pulsed_t;
+int32_t iis2dlpc_data_ready_mode_set(iis2dlpc_ctx_t *ctx,
+                                     iis2dlpc_drdy_pulsed_t val);
+int32_t iis2dlpc_data_ready_mode_get(iis2dlpc_ctx_t *ctx,
+                                     iis2dlpc_drdy_pulsed_t *val);
+
+typedef enum {
+  IIS2DLPC_LPF_ON_OUT         = 0x00,
+  IIS2DLPC_USER_OFFSET_ON_OUT  = 0x01,    
+  IIS2DLPC_HIGH_PASS_ON_OUT    = 0x10,
+} iis2dlpc_fds_t;
+int32_t iis2dlpc_filter_path_set(iis2dlpc_ctx_t *ctx, iis2dlpc_fds_t val);
+int32_t iis2dlpc_filter_path_get(iis2dlpc_ctx_t *ctx, iis2dlpc_fds_t *val);
+
+typedef enum {
+  IIS2DLPC_ODR_DIV_2     = 0,
+  IIS2DLPC_ODR_DIV_4     = 1,
+  IIS2DLPC_ODR_DIV_10    = 2,
+  IIS2DLPC_ODR_DIV_20    = 3,
+} iis2dlpc_bw_filt_t;
+int32_t iis2dlpc_filter_bandwidth_set(iis2dlpc_ctx_t *ctx,
+                                         iis2dlpc_bw_filt_t val);
+int32_t iis2dlpc_filter_bandwidth_get(iis2dlpc_ctx_t *ctx,
+                                         iis2dlpc_bw_filt_t *val);
+
+int32_t iis2dlpc_reference_mode_set(iis2dlpc_ctx_t *ctx, uint8_t val);
+int32_t iis2dlpc_reference_mode_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+typedef enum {
+  IIS2DLPC_SPI_4_WIRE   = 0,
+  IIS2DLPC_SPI_3_WIRE   = 1,
+} iis2dlpc_sim_t;
+int32_t iis2dlpc_spi_mode_set(iis2dlpc_ctx_t *ctx, iis2dlpc_sim_t val);
+int32_t iis2dlpc_spi_mode_get(iis2dlpc_ctx_t *ctx, iis2dlpc_sim_t *val);
+
+typedef enum {
+  IIS2DLPC_I2C_ENABLE    = 0,
+  IIS2DLPC_I2C_DISABLE   = 1,
+} iis2dlpc_i2c_disable_t;
+int32_t iis2dlpc_i2c_interface_set(iis2dlpc_ctx_t *ctx,
+                                   iis2dlpc_i2c_disable_t val);
+int32_t iis2dlpc_i2c_interface_get(iis2dlpc_ctx_t *ctx,
+                                   iis2dlpc_i2c_disable_t *val);
+
+typedef enum {
+  IIS2DLPC_PULL_UP_CONNECT     = 0,
+  IIS2DLPC_PULL_UP_DISCONNECT  = 1,
+} iis2dlpc_cs_pu_disc_t;
+int32_t iis2dlpc_cs_mode_set(iis2dlpc_ctx_t *ctx, iis2dlpc_cs_pu_disc_t val);
+int32_t iis2dlpc_cs_mode_get(iis2dlpc_ctx_t *ctx, iis2dlpc_cs_pu_disc_t *val);
+
+typedef enum {
+  IIS2DLPC_ACTIVE_HIGH  = 0,
+  IIS2DLPC_ACTIVE_LOW   = 1,
+} iis2dlpc_h_lactive_t;
+int32_t iis2dlpc_pin_polarity_set(iis2dlpc_ctx_t *ctx,
+                                  iis2dlpc_h_lactive_t val);
+int32_t iis2dlpc_pin_polarity_get(iis2dlpc_ctx_t *ctx,
+                                  iis2dlpc_h_lactive_t *val);
+
+typedef enum {
+  IIS2DLPC_INT_PULSED   = 0,
+  IIS2DLPC_INT_LATCHED  = 1,
+} iis2dlpc_lir_t;
+int32_t iis2dlpc_int_notification_set(iis2dlpc_ctx_t *ctx,
+                                      iis2dlpc_lir_t val);
+int32_t iis2dlpc_int_notification_get(iis2dlpc_ctx_t *ctx,
+                                      iis2dlpc_lir_t *val);
+
+typedef enum {
+  IIS2DLPC_PUSH_PULL   = 0,
+  IIS2DLPC_OPEN_DRAIN  = 1,
+} iis2dlpc_pp_od_t;
+int32_t iis2dlpc_pin_mode_set(iis2dlpc_ctx_t *ctx, iis2dlpc_pp_od_t val);
+int32_t iis2dlpc_pin_mode_get(iis2dlpc_ctx_t *ctx, iis2dlpc_pp_od_t *val);
+
+int32_t iis2dlpc_pin_int1_route_set(iis2dlpc_ctx_t *ctx, 
+                                    iis2dlpc_ctrl4_int1_pad_ctrl_t *val);
+int32_t iis2dlpc_pin_int1_route_get(iis2dlpc_ctx_t *ctx,
+                                    iis2dlpc_ctrl4_int1_pad_ctrl_t *val);
+
+int32_t iis2dlpc_pin_int2_route_set(iis2dlpc_ctx_t *ctx,
+                                    iis2dlpc_ctrl5_int2_pad_ctrl_t *val);
+int32_t iis2dlpc_pin_int2_route_get(iis2dlpc_ctx_t *ctx,
+                                    iis2dlpc_ctrl5_int2_pad_ctrl_t *val);
+
+int32_t iis2dlpc_all_on_int1_set(iis2dlpc_ctx_t *ctx, uint8_t val);
+int32_t iis2dlpc_all_on_int1_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+int32_t iis2dlpc_wkup_threshold_set(iis2dlpc_ctx_t *ctx, uint8_t val);
+int32_t iis2dlpc_wkup_threshold_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+int32_t iis2dlpc_wkup_dur_set(iis2dlpc_ctx_t *ctx, uint8_t val);
+int32_t iis2dlpc_wkup_dur_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+typedef enum {
+  IIS2DLPC_HP_FEED           = 0,
+  IIS2DLPC_USER_OFFSET_FEED  = 1,
+} iis2dlpc_usr_off_on_wu_t;
+int32_t iis2dlpc_wkup_feed_data_set(iis2dlpc_ctx_t *ctx,
+                                    iis2dlpc_usr_off_on_wu_t val);
+int32_t iis2dlpc_wkup_feed_data_get(iis2dlpc_ctx_t *ctx,
+                                    iis2dlpc_usr_off_on_wu_t *val);
+
+typedef enum {
+  IIS2DLPC_NO_DETECTION        = 0,
+  IIS2DLPC_DETECT_ACT_INACT    = 1,
+  IIS2DLPC_DETECT_STAT_MOTION  = 3,
+} iis2dlpc_sleep_on_t;
+int32_t iis2dlpc_act_mode_set(iis2dlpc_ctx_t *ctx, iis2dlpc_sleep_on_t val);
+int32_t iis2dlpc_act_mode_get(iis2dlpc_ctx_t *ctx, iis2dlpc_sleep_on_t *val);
+
+int32_t iis2dlpc_act_sleep_dur_set(iis2dlpc_ctx_t *ctx, uint8_t val);
+int32_t iis2dlpc_act_sleep_dur_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+int32_t iis2dlpc_tap_threshold_x_set(iis2dlpc_ctx_t *ctx, uint8_t val);
+int32_t iis2dlpc_tap_threshold_x_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+int32_t iis2dlpc_tap_threshold_y_set(iis2dlpc_ctx_t *ctx, uint8_t val);
+int32_t iis2dlpc_tap_threshold_y_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+typedef enum {
+  IIS2DLPC_XYZ    = 0,
+  IIS2DLPC_YXZ    = 1,
+  IIS2DLPC_XZY    = 2,
+  IIS2DLPC_ZYX    = 3,
+  IIS2DLPC_YZX    = 5,
+  IIS2DLPC_ZXY    = 6,
+} iis2dlpc_tap_prior_t;
+int32_t iis2dlpc_tap_axis_priority_set(iis2dlpc_ctx_t *ctx,
+                                       iis2dlpc_tap_prior_t val);
+int32_t iis2dlpc_tap_axis_priority_get(iis2dlpc_ctx_t *ctx,
+                                       iis2dlpc_tap_prior_t *val);
+
+int32_t iis2dlpc_tap_threshold_z_set(iis2dlpc_ctx_t *ctx, uint8_t val);
+int32_t iis2dlpc_tap_threshold_z_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+int32_t iis2dlpc_tap_detection_on_z_set(iis2dlpc_ctx_t *ctx, uint8_t val);
+int32_t iis2dlpc_tap_detection_on_z_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+int32_t iis2dlpc_tap_detection_on_y_set(iis2dlpc_ctx_t *ctx, uint8_t val);
+int32_t iis2dlpc_tap_detection_on_y_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+int32_t iis2dlpc_tap_detection_on_x_set(iis2dlpc_ctx_t *ctx, uint8_t val);
+int32_t iis2dlpc_tap_detection_on_x_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+int32_t iis2dlpc_tap_shock_set(iis2dlpc_ctx_t *ctx, uint8_t val);
+int32_t iis2dlpc_tap_shock_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+int32_t iis2dlpc_tap_quiet_set(iis2dlpc_ctx_t *ctx, uint8_t val);
+int32_t iis2dlpc_tap_quiet_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+int32_t iis2dlpc_tap_dur_set(iis2dlpc_ctx_t *ctx, uint8_t val);
+int32_t iis2dlpc_tap_dur_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+typedef enum {
+  IIS2DLPC_ONLY_SINGLE          = 0,
+  IIS2DLPC_BOTH_SINGLE_DOUBLE   = 1,
+} iis2dlpc_single_double_tap_t;
+int32_t iis2dlpc_tap_mode_set(iis2dlpc_ctx_t *ctx,
+                              iis2dlpc_single_double_tap_t val);
+int32_t iis2dlpc_tap_mode_get(iis2dlpc_ctx_t *ctx,
+                              iis2dlpc_single_double_tap_t *val);
+
+int32_t iis2dlpc_tap_src_get(iis2dlpc_ctx_t *ctx, iis2dlpc_tap_src_t *val);
+
+int32_t iis2dlpc_6d_threshold_set(iis2dlpc_ctx_t *ctx, uint8_t val);
+int32_t iis2dlpc_6d_threshold_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+int32_t iis2dlpc_4d_mode_set(iis2dlpc_ctx_t *ctx, uint8_t val);
+int32_t iis2dlpc_4d_mode_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+int32_t iis2dlpc_6d_src_get(iis2dlpc_ctx_t *ctx, iis2dlpc_sixd_src_t *val);
+
+typedef enum {
+  IIS2DLPC_ODR_DIV_2_FEED   = 0,
+  IIS2DLPC_LPF2_FEED        = 1,
+} iis2dlpc_lpass_on6d_t;
+int32_t iis2dlpc_6d_feed_data_set(iis2dlpc_ctx_t *ctx,
+                                  iis2dlpc_lpass_on6d_t val);
+int32_t iis2dlpc_6d_feed_data_get(iis2dlpc_ctx_t *ctx,
+                                  iis2dlpc_lpass_on6d_t *val);
+
+int32_t iis2dlpc_ff_dur_set(iis2dlpc_ctx_t *ctx, uint8_t val);
+int32_t iis2dlpc_ff_dur_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+typedef enum {
+  IIS2DLPC_FF_TSH_5LSb_FS2g  = 0,
+  IIS2DLPC_FF_TSH_7LSb_FS2g  = 1,
+  IIS2DLPC_FF_TSH_8LSb_FS2g  = 2,
+  IIS2DLPC_FF_TSH_10LSb_FS2g = 3,
+  IIS2DLPC_FF_TSH_11LSb_FS2g = 4,
+  IIS2DLPC_FF_TSH_13LSb_FS2g = 5,
+  IIS2DLPC_FF_TSH_15LSb_FS2g = 6,
+  IIS2DLPC_FF_TSH_16LSb_FS2g = 7,
+} iis2dlpc_ff_ths_t;
+int32_t iis2dlpc_ff_threshold_set(iis2dlpc_ctx_t *ctx,
+                                  iis2dlpc_ff_ths_t val);
+int32_t iis2dlpc_ff_threshold_get(iis2dlpc_ctx_t *ctx,
+                                  iis2dlpc_ff_ths_t *val);
+
+int32_t iis2dlpc_fifo_watermark_set(iis2dlpc_ctx_t *ctx, uint8_t val);
+int32_t iis2dlpc_fifo_watermark_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+typedef enum {
+  IIS2DLPC_BYPASS_MODE             = 0,
+  IIS2DLPC_FIFO_MODE               = 1,
+  IIS2DLPC_STREAM_TO_FIFO_MODE     = 3,
+  IIS2DLPC_BYPASS_TO_STREAM_MODE   = 4,
+  IIS2DLPC_STREAM_MODE             = 6,
+} iis2dlpc_fmode_t;
+int32_t iis2dlpc_fifo_mode_set(iis2dlpc_ctx_t *ctx, iis2dlpc_fmode_t val);
+int32_t iis2dlpc_fifo_mode_get(iis2dlpc_ctx_t *ctx, iis2dlpc_fmode_t *val);
+
+int32_t iis2dlpc_fifo_data_level_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+int32_t iis2dlpc_fifo_ovr_flag_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+int32_t iis2dlpc_fifo_wtm_flag_get(iis2dlpc_ctx_t *ctx, uint8_t *val);
+
+/**
+  * @}
+  *
+  */
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /*IIS2DLPC_REGS_H */
+
+/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/