Skip to content

Commit

Permalink
Fix wrong description for some functions
Browse files Browse the repository at this point in the history
Fixes issue #16
  • Loading branch information
escherstair authored and avisconti committed Sep 12, 2023
1 parent a48eeaf commit 3c7a17c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions iis3dwb_reg.c
Original file line number Diff line number Diff line change
Expand Up @@ -1116,10 +1116,10 @@ int32_t iis3dwb_device_id_get(stmdev_ctx_t *ctx, uint8_t *buff)
}

/**
* @brief Software reset. Restore the default values in user registers.[set]
* @brief Software reset.[set]
*
* @param ctx Read / write interface definitions.(ptr)
* @param val Change the values of sw_reset in reg CTRL3_C
* @param val Value of sw_reset in reg CTRL3_C
* @retval Interface status (MANDATORY: return 0 -> no Error).
*
*/
Expand All @@ -1139,10 +1139,10 @@ int32_t iis3dwb_reset_set(stmdev_ctx_t *ctx, uint8_t val)
}

/**
* @brief Software reset. Restore the default values in user registers.[get]
* @brief Software reset.[get]
*
* @param ctx Read / write interface definitions.(ptr)
* @param val Change the values of sw_reset in reg CTRL3_C
* @param val Value of sw_reset in reg CTRL3_C
* @retval Interface status (MANDATORY: return 0 -> no Error).
*
*/
Expand Down Expand Up @@ -1200,10 +1200,10 @@ int32_t iis3dwb_auto_increment_get(stmdev_ctx_t *ctx, uint8_t *val)
}

/**
* @brief Reboot memory content. Reload the calibration parameters.[set]
* @brief Reboot memory content.[set]
*
* @param ctx Read / write interface definitions.(ptr)
* @param val Change the values of boot in reg CTRL3_C
* @param val Value of boot in reg CTRL3_C
* @retval Interface status (MANDATORY: return 0 -> no Error).
*
*/
Expand All @@ -1223,10 +1223,10 @@ int32_t iis3dwb_boot_set(stmdev_ctx_t *ctx, uint8_t val)
}

/**
* @brief Reboot memory content. Reload the calibration parameters.[get]
* @brief Reboot memory content.[get]
*
* @param ctx Read / write interface definitions.(ptr)
* @param val Change the values of boot in reg CTRL3_C
* @param val Value of boot in reg CTRL3_C
* @retval Interface status (MANDATORY: return 0 -> no Error).
*
*/
Expand Down

0 comments on commit 3c7a17c

Please sign in to comment.