forked from ARMmbed/mbed-os
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update STM32H5 HAL driver, fix some DMA bugs (#344)
* Update STM32H5 HAL driver, fix some DMA bugs * Disable LL driver * Add scancode ignore rules
- Loading branch information
1 parent
2bc173e
commit f2a128b
Showing
155 changed files
with
49,083 additions
and
3,978 deletions.
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 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 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 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 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 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.