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.
STM32U5 HAL update, NUCLEO_U575ZI upload method file (#184)
* STM32U5: STM32Cube_FW_U5_V1.2.0 * Update STM32U5 upload method config files * Fix HAL sleep manager test bug causing test failure on STM32U5 --------- Co-authored-by: Jerome Coutant <[email protected]>
- Loading branch information
1 parent
36506c9
commit 162acab
Showing
255 changed files
with
207,793 additions
and
13,237 deletions.
There are no files selected for viewing
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
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 */ | ||
/** | ||
* @} | ||
*/ | ||
|
||
/** | ||
* @} | ||
*/ | ||
|
||
|
||
|
||
|
Oops, something went wrong.