Skip to content

Commit decf9e9

Browse files
committed
Merge branch 'develop/upstream' into master/upstream
Change-Id: Icd8983e8e2f94cb4cf02b3c78b7fa179b654b4f0
2 parents a82c293 + 63c1419 commit decf9e9

File tree

23 files changed

+109
-94
lines changed

23 files changed

+109
-94
lines changed

ARM.CMSIS.pdsc

Lines changed: 37 additions & 30 deletions
Large diffs are not rendered by default.

CMSIS/Core/Include/cmsis_armclang_ltm.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
^/**************************************************************************//**
2-
* @file cmsis_armclang.h
1+
/**************************************************************************//**
2+
* @file cmsis_armclang_ltm.h
33
* @brief CMSIS compiler armclang (Arm Compiler 6) header file
4-
* @version V1.0.0
5-
* @date 13. March 2019
4+
* @version V1.0.1
5+
* @date 19. March 2019
66
******************************************************************************/
77
/*
88
* Copyright (c) 2018-2019 Arm Limited. All rights reserved.

CMSIS/DoxyGen/Core/core.dxy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "CMSIS-Core (Cortex-M)"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = "Version 5.2.0"
41+
PROJECT_NUMBER = "Version 5.2.1"
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

CMSIS/DoxyGen/Core/core_CM0-7.dxy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "CMSIS-Core (Cortex-M)"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = "Version 5.2.0"
41+
PROJECT_NUMBER = "Version 5.2.1"
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

CMSIS/DoxyGen/Core/src/Overview.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,13 +96,19 @@ The \ref templates_pg supplied by Arm have been tested and verified with the fol
9696
<th>Version</th>
9797
<th>Description</th>
9898
</tr>
99+
<tr>
100+
<td>V5.2.1</td>
101+
<td>
102+
Fixed: Compilation issue in cmsis_armclang_ltm.h introduced in 5.2.0
103+
</td>
104+
</tr>
99105
<tr>
100106
<td>V5.2.0</td>
101107
<td>
102108
Added: Cortex-M35P support.\n
103109
Added: Cortex-M1 support.\n
104110
Added: Armv8.1 architecture support.\n
105-
Added: \ref __RESTRICT and \ref __STATIC_FORCEINLINE compiler control macros.
111+
Added: \ref __RESTRICT and \ref __STATIC_FORCEINLINE compiler control macros.
106112
</td>
107113
</tr>
108114
<tr>

CMSIS/NN/Examples/ARM/arm_nn_examples/cifar10/RTE/Device/ARMCM4_FP/startup_ARMCM4.s

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
; <o> Stack Size (in Bytes) <0x0-0xFFFFFFFF:8>
3333
; </h>
3434

35-
Stack_Size EQU 0x00000800
35+
Stack_Size EQU 0x00000400
3636

3737
AREA STACK, NOINIT, READWRITE, ALIGN=3
3838
Stack_Mem SPACE Stack_Size
@@ -43,7 +43,7 @@ __initial_sp
4343
; <o> Heap Size (in Bytes) <0x0-0xFFFFFFFF:8>
4444
; </h>
4545

46-
Heap_Size EQU 0x00080000
46+
Heap_Size EQU 0x00000C00
4747

4848
AREA HEAP, NOINIT, READWRITE, ALIGN=3
4949
__heap_base

Device/ARM/ARMCM0/Source/GCC/startup_ARMCM0.S

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
* @file startup_ARMCM0.S
33
* @brief CMSIS Core Device Startup File for
44
* ARMCM0 Device
5-
* @version V5.3.1
6-
* @date 09. July 2018
5+
* @version V1.1.0
6+
* @date 23. January 2019
77
******************************************************************************/
88
/*
9-
* Copyright (c) 2009-2018 Arm Limited. All rights reserved.
9+
* Copyright (c) 2009-2019 Arm Limited. All rights reserved
1010
*
1111
* SPDX-License-Identifier: Apache-2.0
1212
*

Device/ARM/ARMCM0plus/Source/GCC/startup_ARMCM0plus.S

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
* @file startup_ARMCM0plus.s
33
* @brief CMSIS Core Device Startup File for
44
* ARMCM0plus Device
5-
* @version V5.3.1
6-
* @date 09. July 2018
5+
* @version V1.1.0
6+
* @date 23. January 2019
77
******************************************************************************/
88
/*
9-
* Copyright (c) 2009-2018 Arm Limited. All rights reserved.
9+
* Copyright (c) 2009-2019 Arm Limited. All rights reserved
1010
*
1111
* SPDX-License-Identifier: Apache-2.0
1212
*

Device/ARM/ARMCM1/Source/GCC/startup_ARMCM1.S

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
* @file startup_ARMCM1.S
33
* @brief CMSIS Core Device Startup File for
44
* ARMCM1 Device
5-
* @version V5.3.1
6-
* @date 20. July 2018
5+
* @version V1.1.0
6+
* @date 23. January 2019
77
******************************************************************************/
88
/*
9-
* Copyright (c) 2009-2018 Arm Limited. All rights reserved.
9+
* Copyright (c) 2009-2019 Arm Limited. All rights reserved
1010
*
1111
* SPDX-License-Identifier: Apache-2.0
1212
*

Device/ARM/ARMCM23/Source/GCC/startup_ARMCM23.S

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
* @file startup_ARMCM23.S
33
* @brief CMSIS Core Device Startup File for
44
* ARMCM23 Device
5-
* @version V5.3.1
6-
* @date 09. July 2018
5+
* @version V1.1.0
6+
* @date 23. January 2019
77
******************************************************************************/
88
/*
9-
* Copyright (c) 2009-2018 Arm Limited. All rights reserved.
9+
* Copyright (c) 2009-2019 Arm Limited. All rights reserved
1010
*
1111
* SPDX-License-Identifier: Apache-2.0
1212
*

0 commit comments

Comments
 (0)