Skip to content

Commit 928a6ba

Browse files
committed
stm32cube: update stm32h7rs to cube version V1.2.0
Update Cube version for STM32H7RSxx series on https://github.com/STMicroelectronics from version v1.1.0 to version v1.2.0 Signed-off-by: Fabrice DJIATSA <[email protected]>
1 parent f01f131 commit 928a6ba

File tree

96 files changed

+144173
-139739
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+144173
-139739
lines changed

stm32cube/stm32h7rsxx/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2019 Linaro Limited
2-
# Copyright (c) 2024 STMicroelectronics
2+
# Copyright (c) 2020 STMicroelectronics
33
#
44
# SPDX-License-Identifier: Apache-2.0
55

@@ -67,6 +67,7 @@ zephyr_library_sources_ifdef(CONFIG_USE_STM32_HAL_SAI drivers/src/stm32h7rsxx_ha
6767
zephyr_library_sources_ifdef(CONFIG_USE_STM32_HAL_SAI_EX drivers/src/stm32h7rsxx_hal_sai_ex.c)
6868
zephyr_library_sources_ifdef(CONFIG_USE_STM32_HAL_SD drivers/src/stm32h7rsxx_hal_sd.c)
6969
zephyr_library_sources_ifdef(CONFIG_USE_STM32_HAL_SD_EX drivers/src/stm32h7rsxx_hal_sd_ex.c)
70+
zephyr_library_sources_ifdef(CONFIG_USE_STM32_HAL_SDIO drivers/src/stm32h7rsxx_hal_sdio.c)
7071
zephyr_library_sources_ifdef(CONFIG_USE_STM32_HAL_SDRAM drivers/src/stm32h7rsxx_hal_sdram.c)
7172
zephyr_library_sources_ifdef(CONFIG_USE_STM32_HAL_SMARTCARD drivers/src/stm32h7rsxx_hal_smartcard.c)
7273
zephyr_library_sources_ifdef(CONFIG_USE_STM32_HAL_SMARTCARD_EX drivers/src/stm32h7rsxx_hal_smartcard_ex.c)

stm32cube/stm32h7rsxx/README

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Origin:
66
http://www.st.com/en/embedded-software/stm32cubeh7rs.html
77

88
Status:
9-
version v1.1.0
9+
version v1.2.0
1010

1111
Purpose:
1212
ST Microelectronics official MCU package for STM32H7RS series.
@@ -23,7 +23,7 @@ URL:
2323
https://github.com/STMicroelectronics/STM32CubeH7RS
2424

2525
Commit:
26-
9b6c9db6c4f257d88d12848a4d6d000fff53ee1e
26+
fc7bcafbad47f1a6f7986e236c9f00a46fc3b71f
2727

2828
Maintained-by:
2929
External

stm32cube/stm32h7rsxx/drivers/include/Legacy/stm32_hal_legacy.h

Lines changed: 4410 additions & 4359 deletions
Large diffs are not rendered by default.
Lines changed: 53 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,53 @@
1-
/**
2-
******************************************************************************
3-
* @file stm32_assert.h
4-
* @author MCD Application Team
5-
* @brief STM32 assert template file.
6-
* This file should be copied to the application folder and renamed
7-
* to stm32_assert.h.
8-
******************************************************************************
9-
* @attention
10-
*
11-
* Copyright (c) 2022 STMicroelectronics.
12-
* All rights reserved.
13-
*
14-
* This software is licensed under terms that can be found in the LICENSE file
15-
* in the root directory of this software component.
16-
* If no LICENSE file comes with this software, it is provided AS-IS.
17-
*
18-
******************************************************************************
19-
*/
20-
21-
/* Define to prevent recursive inclusion -------------------------------------*/
22-
#ifndef STM32_ASSERT_H
23-
#define STM32_ASSERT_H
24-
25-
#ifdef __cplusplus
26-
extern "C" {
27-
#endif
28-
29-
/* Includes ------------------------------------------------------------------*/
30-
/* Exported types ------------------------------------------------------------*/
31-
/* Exported constants --------------------------------------------------------*/
32-
/* Exported macros -----------------------------------------------------------*/
33-
#ifdef USE_FULL_ASSERT
34-
/**
35-
* @brief The assert_param macro is used for function's parameters check.
36-
* @param expr If expr is false, it calls assert_failed function
37-
* which reports the name of the source file and the source
38-
* line number of the call that failed.
39-
* If expr is true, it returns no value.
40-
* @retval None
41-
*/
42-
#define assert_param(expr) ((expr) ? (void)0U : assert_failed((uint8_t *)__FILE__, __LINE__))
43-
/* Exported functions ------------------------------------------------------- */
44-
void assert_failed(uint8_t *file, uint32_t line);
45-
#else
46-
#define assert_param(expr) ((void)0U)
47-
#endif /* USE_FULL_ASSERT */
48-
49-
#ifdef __cplusplus
50-
}
51-
#endif
52-
53-
#endif /* STM32_ASSERT_H */
1+
/**
2+
******************************************************************************
3+
* @file stm32_assert.h
4+
* @author MCD Application Team
5+
* @brief STM32 assert template file.
6+
* This file should be copied to the application folder and renamed
7+
* to stm32_assert.h.
8+
******************************************************************************
9+
* @attention
10+
*
11+
* Copyright (c) 2022 STMicroelectronics.
12+
* All rights reserved.
13+
*
14+
* This software is licensed under terms that can be found in the LICENSE file
15+
* in the root directory of this software component.
16+
* If no LICENSE file comes with this software, it is provided AS-IS.
17+
*
18+
******************************************************************************
19+
*/
20+
21+
/* Define to prevent recursive inclusion -------------------------------------*/
22+
#ifndef STM32_ASSERT_H
23+
#define STM32_ASSERT_H
24+
25+
#ifdef __cplusplus
26+
extern "C" {
27+
#endif
28+
29+
/* Includes ------------------------------------------------------------------*/
30+
/* Exported types ------------------------------------------------------------*/
31+
/* Exported constants --------------------------------------------------------*/
32+
/* Exported macros -----------------------------------------------------------*/
33+
#ifdef USE_FULL_ASSERT
34+
/**
35+
* @brief The assert_param macro is used for function's parameters check.
36+
* @param expr If expr is false, it calls assert_failed function
37+
* which reports the name of the source file and the source
38+
* line number of the call that failed.
39+
* If expr is true, it returns no value.
40+
* @retval None
41+
*/
42+
#define assert_param(expr) ((expr) ? (void)0U : assert_failed((uint8_t *)__FILE__, __LINE__))
43+
/* Exported functions ------------------------------------------------------- */
44+
void assert_failed(uint8_t *file, uint32_t line);
45+
#else
46+
#define assert_param(expr) ((void)0U)
47+
#endif /* USE_FULL_ASSERT */
48+
49+
#ifdef __cplusplus
50+
}
51+
#endif
52+
53+
#endif /* STM32_ASSERT_H */

0 commit comments

Comments
 (0)