Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix wrong description for some functions #17

Merged
merged 1 commit into from
Sep 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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