-
Notifications
You must be signed in to change notification settings - Fork 114
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
Stm32Cube: Update cube version #146
Conversation
TDhaouST
commented
Jul 22, 2022
- stm32cube: update stm32f4 to cube version V1.27.1.
- stm32cube: update stm32f7 to cube version V1.17.0.
- stm32cube: update stm32g0 to cube version V1.6.1.
- stm32cube: update stm32g4 to cube version V1.5.1.
- stm32cube: update stm32l4 to cube version V1.17.2.
- stm32cube: update stm32mp1 to cube version 1.6.0.
- stm32cube: update stm32u5 to cube version V1.1.1.
- stm32cube: update stm32wb to cube version V1.14.0.
- lib/stm32: update stm32wb to cube version V1.14.0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
New HAL ETH API was provided in F7 release. This API is not yet supported in Zephyr, so stm32f7 cube package should be adapted to use the legacy api for now.
See #138 on how to do this adaptation.
c862fda
to
5287593
Compare
Update Cube version for STM32WBxx series on https://github.com/STMicroelectronics from version v1.13.2 to version v1.14.0 Signed-off-by: TLIG Dhaou <dhaou.tlig-ext@st.com>
Update Cube version for STM32WBxx series on https://github.com/STMicroelectronics from version v1.13.2 to version v1.14.0 Signed-off-by: TLIG Dhaou <dhaou.tlig-ext@st.com>
Update Cube version for STM32U5xx series on https://github.com/STMicroelectronics from version v1.1.0 to version v1.1.1 Signed-off-by: TLIG Dhaou <dhaou.tlig-ext@st.com>
Update Cube version for STM32MP1xx series on https://github.com/STMicroelectronics from version 1.5.0 to version 1.6.0 Signed-off-by: TLIG Dhaou <dhaou.tlig-ext@st.com>
Update Cube version for STM32L4xx series on https://github.com/STMicroelectronics from version v1.17.1 to version v1.17.2 Signed-off-by: TLIG Dhaou <dhaou.tlig-ext@st.com>
Update Cube version for STM32G4xx series on https://github.com/STMicroelectronics from version v1.5.0 to version v1.5.1 Signed-off-by: TLIG Dhaou <dhaou.tlig-ext@st.com>
Update Cube version for STM32G0xx series on https://github.com/STMicroelectronics from version v1.5.0 to version v1.6.1 Signed-off-by: TLIG Dhaou <dhaou.tlig-ext@st.com>
5287593
to
e4463eb
Compare
Update Cube version for STM32F7xx series on https://github.com/STMicroelectronics from version v1.16.2 to version v1.17.0 Signed-off-by: TLIG Dhaou <dhaou.tlig-ext@st.com>
e4463eb
to
7be6bcf
Compare
@@ -334,6 +335,10 @@ | |||
#include "stm32f7xx_hal_exti.h" | |||
#endif /* HAL_EXTI_MODULE_ENABLED */ | |||
|
|||
#ifdef HAL_ETH_LEGACY_MODULE_ENABLED | |||
#include "Legacy/stm32f4xx_hal_eth_legacy.h" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#include "Legacy/stm32f4xx_hal_eth_legacy.h" | |
#include "Legacy/stm32f7xx_hal_eth_legacy.h" |
Enable legacy ethernet driver using HAL_ETH_LEGACY_MODULE_ENABLED This will have to be removed once Zephyr driver is migrated ot the new Cube HAL ethernet API. Signed-off-by: TLIG Dhaou <dhaou.tlig-ext@st.com>
Update Cube version for STM32F4xx series on https://github.com/STMicroelectronics from version v1.27.0 to version v1.27.1 Signed-off-by: TLIG Dhaou <dhaou.tlig-ext@st.com>
Re - generate common_ll headers after Cube updates Signed-off-by: TLIG Dhaou <dhaou.tlig-ext@st.com>
7be6bcf
to
53038fd
Compare