stm32wb0: HAL and BLE lib version update to STM32CubeWB0 1.4.0#332
Merged
erwango merged 12 commits intozephyrproject-rtos:mainfrom Mar 16, 2026
Merged
stm32wb0: HAL and BLE lib version update to STM32CubeWB0 1.4.0#332erwango merged 12 commits intozephyrproject-rtos:mainfrom
erwango merged 12 commits intozephyrproject-rtos:mainfrom
Conversation
64bef7e to
3bc848f
Compare
3bc848f to
662bf2f
Compare
Collaborator
Author
662bf2f to
617ad96
Compare
HoZHel
approved these changes
Mar 3, 2026
erwango
approved these changes
Mar 3, 2026
mathieuchopstm
approved these changes
Mar 12, 2026
asm5878
approved these changes
Mar 13, 2026
STM32WB0 series is a bit specific among other SoC series in that the HAL/LL resources has a single x suffix (stm32wb0x_...) while all other series have 2 x's (e.g. stm32f4xx). Also, the CMSIS device drivers directory name in STM32Cube has a single uppercase X suffix (Drivers/CMSIS/Device/ST/STM32WB0X/) while other series have 2 lowercase x's suffixes (e.g. Drivers/CMSIS/Device/ST/STM32F4x/). Signed-off-by: Etienne Carriere <etienne.carriere@st.com>
Update Cube version for STM32WB0x series on https://github.com/STMicroelectronics from version v1.0.0 to version v1.1.0 Signed-off-by: Etienne Carriere <etienne.carriere@st.com>
Re - generate common_ll headers after Cube updates Signed-off-by: Etienne Carriere <etienne.carriere@st.com>
Some common source and header files have moved in STM32CubeWB0 from a project specific directory to a common Common/BLE/ directory. Update local files paths to ease later update using update_stm32_package.py script. Signed-off-by: Etienne Carriere <etienne.carriere@st.com>
Replace tabulation indentation with space char indentation in CMakeLists.txt to betteer conform with CMake files convention. Signed-off-by: Etienne Carriere <etienne.carriere@st.com>
Update stm32wb0 wireless library from STM32CubeWB0 release tag v1.0.0 to release tag v1.1.0 with Zephyr STM32 HAL local patches re-applied. This update was done manually, not using scripts/update_stm32_package.py that won't work due to major source/header file paths changes between STM32CubeWB0 release tags v1.0.0 and v1.1.0. Later updates will be able to be handled by the script. Signed-off-by: Etienne Carriere <etienne.carriere@st.com>
Add wireless library update from STM32CubeWB0. Factorize use of ble_library.update() for the 3 series (wb, wba, wb0) in serie_update.py script for sakee of simplicity. Signed-off-by: Etienne Carriere <etienne.carriere@st.com>
Update Cube version for STM32WB0x series on https://github.com/STMicroelectronics from version v1.1.0 to version v1.4.0 While updating, consider changes from commit e05bb47 ("stm32cube: stm32wb0x: drivers: Fix HAL radio timer for WB07/WB05") regarding radio timer updates when embedded in a Zephyr application (conditioned by directive __ZEPHYR__). Signed-off-by: Etienne Carriere <etienne.carriere@st.com>
Update Cube version for STM32WB0x series on https://github.com/STMicroelectronics from version v1.1.0 to version v1.4.0 Signed-off-by: Etienne Carriere <etienne.carriere@st.com>
Consider dtm_cmds.h header file added in STMB32CubeWB0 v1.4.0. Disable build of DTM_CMDS_TxTestStopRequest() in Zephyr context. Signed-off-by: Etienne Carriere <etienne.carriere@st.com>
Re - generate common_ll headers after Cube updates Signed-off-by: Etienne Carriere <etienne.carriere@st.com>
Fix connection issue with some iOS devices. Signed-off-by: Ali Hozhabri <ali.hozhabri@st.com>
4389f43 to
b911118
Compare
Collaborator
Author
|
Rebased. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Update HAL and BLE library for stm32wb0 from STM32CubeWB0 version 1.0.0 to version 1.4.0.
This P-R updates update_stm32_package.py script to consider stm32wb0 whereas it was previously ignored, stm32wbxx being processed instead.
The HAL/BLE lib version update is done in 2 steps. First commits perfom a hand made update to STM32Cube v1.1.0 in order to handle some file paths changes in STM32CubeWB0 file tree. Last commit uses update_stm32_package.py script to bump from STM32CubeWB0 veresion 1.1.0 to version 1.4.0.