Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions sensor/stmemsc/README
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,7 @@ License:

License Link:
https://opensource.org/licenses/BSD-3-Clause

Patch List:
* sensor: lsm6dso: Disable -Wmaybe-uninitialized for lsm6dso_mode_set
- Modified sensor/stmemsc/lsm6dso_STdC/driver/lsm6dso_reg.c
14 changes: 14 additions & 0 deletions sensor/stmemsc/lsm6dso_STdC/driver/lsm6dso_reg.c
Original file line number Diff line number Diff line change
Expand Up @@ -11768,6 +11768,16 @@ int32_t lsm6dso_all_sources_get(stmdev_ctx_t *ctx,
return ret;
}

/*
* `-Wmaybe-uninitialized` warning is disabled for the `lsm6dso_mode_set`
* function because GCC 12 and above may report a false positive warning
* claiming that the `ctrl2_ois` variable may be used uninitialized.
*/
#if defined(__GNUC__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
#endif

/**
* @brief Sensor conversion parameters selection.[set]
*
Expand Down Expand Up @@ -12226,6 +12236,10 @@ int32_t lsm6dso_mode_set(stmdev_ctx_t *ctx, stmdev_ctx_t *aux_ctx,
return ret;
}

#if defined(__GNUC__)
#pragma GCC diagnostic pop
#endif

/**
* @brief Sensor conversion parameters selection.[get]
*
Expand Down