forked from ARMmbed/mbed-os
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ARMmbed#15420 from jeromecoutant/PR_U5_120
STM32U5: STM32Cube_FW_U5_V1.2.0
- Loading branch information
Showing
248 changed files
with
203,421 additions
and
13,216 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
targets/TARGET_STM/TARGET_STM32U5/STM32Cube_FW/CMSIS/LICENSE.txt
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,6 @@ | ||
This software component is provided to you as part of a software package and | ||
applicable license terms are in the Package_license file. If you received this | ||
software component outside of a package or without applicable license terms, | ||
the terms of the Apache-2.0 license shall apply. | ||
You may obtain a copy of the Apache-2.0 at: | ||
https://opensource.org/licenses/Apache-2.0 |
80 changes: 80 additions & 0 deletions
80
targets/TARGET_STM/TARGET_STM32U5/STM32Cube_FW/CMSIS/partition_stm32u5xx.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,80 @@ | ||
/** | ||
****************************************************************************** | ||
* @file partition_stm32u5xx.h | ||
* @author MCD Application Team | ||
* @brief CMSIS STM32U5xx Device Header File for Initial Setup for | ||
* Secure / Non-Secure Zones based on CMSIS CORE V5.4.0 | ||
* | ||
* The file is included in system_stm32u5xx_s.c in secure application. | ||
* It includes the configuration section that allows to select the | ||
* STM32U5xx device partitioning file for system core secure attributes | ||
* and interrupt secure and non-secure assignment. | ||
* | ||
****************************************************************************** | ||
* @attention | ||
* | ||
* Copyright (c) 2021 STMicroelectronics. | ||
* All rights reserved. | ||
* | ||
* This software is licensed under terms that can be found in the LICENSE file | ||
* in the root directory of this software component. | ||
* If no LICENSE file comes with this software, it is provided AS-IS. | ||
* | ||
****************************************************************************** | ||
*/ | ||
|
||
/** @addtogroup CMSIS | ||
* @{ | ||
*/ | ||
|
||
/** @addtogroup stm32u5xx | ||
* @{ | ||
*/ | ||
|
||
#ifndef PARTITION_STM32U5XX_H | ||
#define PARTITION_STM32U5XX_H | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif /* __cplusplus */ | ||
|
||
/** @addtogroup Secure_configuration_section | ||
* @{ | ||
*/ | ||
|
||
#if defined(STM32U575xx) | ||
#include "partition_stm32u575xx.h" | ||
#elif defined(STM32U585xx) | ||
#include "partition_stm32u585xx.h" | ||
#elif defined(STM32U595xx) | ||
#include "partition_stm32u595xx.h" | ||
#elif defined(STM32U5A5xx) | ||
#include "partition_stm32u5a5xx.h" | ||
#elif defined(STM32U599xx) | ||
#include "partition_stm32u599xx.h" | ||
#elif defined(STM32U5A9xx) | ||
#include "partition_stm32u5a9xx.h" | ||
#elif defined(STM32U535xx) | ||
#include "partition_stm32u535xx.h" | ||
#elif defined(STM32U545xx) | ||
#include "partition_stm32u545xx.h" | ||
#else | ||
#error "Please select first the target STM32U5xx device used in your application (in stm32u5xx.h file)" | ||
#endif | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif /* __cplusplus */ | ||
|
||
#endif /* PARTITION_STM32U5XX_H */ | ||
/** | ||
* @} | ||
*/ | ||
|
||
/** | ||
* @} | ||
*/ | ||
|
||
|
||
|
||
|
21,195 changes: 21,195 additions & 0 deletions
21,195
targets/TARGET_STM/TARGET_STM32U5/STM32Cube_FW/CMSIS/stm32u535xx.h
Large diffs are not rendered by default.
Oops, something went wrong.
22,026 changes: 22,026 additions & 0 deletions
22,026
targets/TARGET_STM/TARGET_STM32U5/STM32Cube_FW/CMSIS/stm32u545xx.h
Large diffs are not rendered by default.
Oops, something went wrong.
2,841 changes: 1,644 additions & 1,197 deletions
2,841
targets/TARGET_STM/TARGET_STM32U5/STM32Cube_FW/CMSIS/stm32u575xx.h
Large diffs are not rendered by default.
Oops, something went wrong.
2,852 changes: 1,654 additions & 1,198 deletions
2,852
targets/TARGET_STM/TARGET_STM32U5/STM32Cube_FW/CMSIS/stm32u585xx.h
Large diffs are not rendered by default.
Oops, something went wrong.
25,581 changes: 25,581 additions & 0 deletions
25,581
targets/TARGET_STM/TARGET_STM32U5/STM32Cube_FW/CMSIS/stm32u595xx.h
Large diffs are not rendered by default.
Oops, something went wrong.
29,428 changes: 29,428 additions & 0 deletions
29,428
targets/TARGET_STM/TARGET_STM32U5/STM32Cube_FW/CMSIS/stm32u599xx.h
Large diffs are not rendered by default.
Oops, something went wrong.
26,462 changes: 26,462 additions & 0 deletions
26,462
targets/TARGET_STM/TARGET_STM32U5/STM32Cube_FW/CMSIS/stm32u5a5xx.h
Large diffs are not rendered by default.
Oops, something went wrong.
30,309 changes: 30,309 additions & 0 deletions
30,309
targets/TARGET_STM/TARGET_STM32U5/STM32Cube_FW/CMSIS/stm32u5a9xx.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
Oops, something went wrong.