-
Notifications
You must be signed in to change notification settings - Fork 151
[RFC] stm32wb0: HAL and BLE lib version update to STM32CubeWB0 1.4.0 #332
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
Open
etienne-lms
wants to merge
11
commits into
zephyrproject-rtos:main
Choose a base branch
from
etienne-lms:hal-update-wb0
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
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 <[email protected]>
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 <[email protected]>
Re - generate common_ll headers after Cube updates Signed-off-by: Etienne Carriere <[email protected]>
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 <[email protected]>
Replace tabulation indentation with space char indentation in CMakeLists.txt to betteer conform with CMake files convention. Signed-off-by: Etienne Carriere <[email protected]>
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 <[email protected]>
4c40878 to
64bef7e
Compare
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
Re - generate common_ll headers after Cube updates Signed-off-by: Etienne Carriere <[email protected]>
64bef7e to
3bc848f
Compare
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.