forked from ARMmbed/mbed-os
-
Notifications
You must be signed in to change notification settings - Fork 26
Update STM32H5 HAL driver, fix some DMA bugs #344
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
Merged
multiplemonomials
merged 3 commits into
master
from
dev/stm32h5-update-hal-driver-and-bugfix-spi-abort
Sep 22, 2024
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
79 changes: 79 additions & 0 deletions
79
targets/TARGET_STM/TARGET_STM32H5/STM32Cube_FW/CMSIS/partition_stm32h5xx.h
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,79 @@ | ||
| /** | ||
| ****************************************************************************** | ||
| * @file partition_stm32h5xx.h | ||
| * @author MCD Application Team | ||
| * @brief CMSIS STM32H5xx Device Header File for Initial Setup for Secure / | ||
| * Non-Secure Zones for ARMCM33 based on CMSIS CORE partition_ARMCM33.h | ||
| * Template. | ||
| * | ||
| * The file is included in system_stm32h5xx_s.c in secure application. | ||
| * It includes the configuration section that allows to select the | ||
| * STM32H5xx device partitioning file for system core secure attributes | ||
| * and interrupt secure and non-secure assignment. | ||
| * | ||
| ****************************************************************************** | ||
| * Copyright (c) 2009-2019 Arm Limited. All rights reserved. | ||
| * Copyright (c) 2023 STMicroelectronics. All rights reserved. | ||
| * | ||
| * SPDX-License-Identifier: Apache-2.0 | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the License); you may | ||
| * not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an AS IS BASIS, WITHOUT | ||
| * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| ****************************************************************************** | ||
| */ | ||
|
|
||
| /** @addtogroup CMSIS | ||
| * @{ | ||
| */ | ||
|
|
||
| /** @addtogroup stm32h5xx | ||
| * @{ | ||
| */ | ||
|
|
||
| #ifndef PARTITION_STM32H5XX_H | ||
| #define PARTITION_STM32H5XX_H | ||
|
|
||
| #ifdef __cplusplus | ||
| extern "C" { | ||
| #endif /* __cplusplus */ | ||
|
|
||
| /** @addtogroup Secure_configuration_section | ||
| * @{ | ||
| */ | ||
|
|
||
| #if defined(STM32H573xx) | ||
| #include "partition_stm32h573xx.h" | ||
| #elif defined(STM32H563xx) | ||
| #include "partition_stm32h563xx.h" | ||
| #elif defined(STM32H562xx) | ||
| #include "partition_stm32h562xx.h" | ||
| #elif defined(STM32H533xx) | ||
| #include "partition_stm32h533xx.h" | ||
| #elif defined(STM32H523xx) | ||
| #include "partition_stm32h523xx.h" | ||
| #else | ||
| #error "Please select first the target STM32H5xx device used in your application (in stm32h5xx.h file)" | ||
| #endif | ||
|
|
||
|
|
||
| #ifdef __cplusplus | ||
| } | ||
| #endif /* __cplusplus */ | ||
|
|
||
| #endif /* PARTITION_STM32H5XX_H */ | ||
| /** | ||
| * @} | ||
| */ | ||
|
|
||
| /** | ||
| * @} | ||
| */ |
608 changes: 95 additions & 513 deletions
608
targets/TARGET_STM/TARGET_STM32H5/STM32Cube_FW/CMSIS/stm32h503xx.h
Large diffs are not rendered by default.
Oops, something went wrong.
20,175 changes: 20,175 additions & 0 deletions
20,175
targets/TARGET_STM/TARGET_STM32H5/STM32Cube_FW/CMSIS/stm32h523xx.h
Large diffs are not rendered by default.
Oops, something went wrong.
20,774 changes: 20,774 additions & 0 deletions
20,774
targets/TARGET_STM/TARGET_STM32H5/STM32Cube_FW/CMSIS/stm32h533xx.h
Large diffs are not rendered by default.
Oops, something went wrong.
567 changes: 482 additions & 85 deletions
567
targets/TARGET_STM/TARGET_STM32H5/STM32Cube_FW/CMSIS/stm32h562xx.h
Large diffs are not rendered by default.
Oops, something went wrong.
567 changes: 482 additions & 85 deletions
567
targets/TARGET_STM/TARGET_STM32H5/STM32Cube_FW/CMSIS/stm32h563xx.h
Large diffs are not rendered by default.
Oops, something went wrong.
219 changes: 133 additions & 86 deletions
219
targets/TARGET_STM/TARGET_STM32H5/STM32Cube_FW/CMSIS/stm32h573xx.h
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
15 changes: 6 additions & 9 deletions
15
targets/TARGET_STM/TARGET_STM32H5/STM32Cube_FW/Note_add_new_STM32_family.md
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.