From 96d6da4e252b06dcfdc041e7df23e86161c33007 Mon Sep 17 00:00:00 2001 From: rihab kouki Date: Tue, 28 Jul 2020 11:24:49 +0100 Subject: Official ARM version: v5.6.0 --- docs/Core/html/startup_s_pg.html | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) (limited to 'docs/Core/html/startup_s_pg.html') diff --git a/docs/Core/html/startup_s_pg.html b/docs/Core/html/startup_s_pg.html index 09790b2..1016831 100644 --- a/docs/Core/html/startup_s_pg.html +++ b/docs/Core/html/startup_s_pg.html @@ -3,8 +3,8 @@ -Startup File startup_<device>.s -CMSIS-Core (Cortex-M): Startup File startup_<device>.s +Startup File startup_<device>.s (deprecated) +CMSIS-Core (Cortex-M): Startup File startup_<device>.s (deprecated) @@ -32,7 +32,7 @@ Logo
CMSIS-Core (Cortex-M) -  Version 5.1.2 +  Version 5.3.0
CMSIS-Core support for Cortex-M processor-based devices
@@ -108,10 +108,10 @@ $(document).ready(function(){initNavTree('startup_s_pg.html','');});
-
Startup File startup_<device>.s
+
Startup File startup_<device>.s (deprecated)
-

The Startup File startup_<device>.s contains:

+

The Startup File startup_<device>.s (deprecated) contains:

  • The reset handler which is executed after CPU reset and typically calls the SystemInit function.
  • The setup values for the Main Stack Pointer (MSP).
  • @@ -130,8 +130,8 @@ $(document).ready(function(){initNavTree('startup_s_pg.html','');});
    : :
    DCD EINT1_IRQHandler ; 16+30: PIO INT1
    DCD EINT0_IRQHandler ; 16+31: PIO INT0
    -
    :
    -
    :
    +
    :
    +
    :
    EXPORT WAKEUP0_IRQHandler [WEAK]
    EXPORT WAKEUP1_IRQHandler [WEAK]
    EXPORT WAKEUP2_IRQHandler [WEAK]
    @@ -155,8 +155,8 @@ startup_Device.s Template File ; * @file startup_<Device>.s ; * @brief CMSIS Cortex-M ARMv7-M based Core Device Startup File for ; * Device <Device> -; * @version V5.3.1 -; * @date 09. July 2018 +; * @version V5.4.0 +; * @date 12. December 2018 ; ******************************************************************************/ ;/* ; * Copyright (c) 2009-2018 Arm Limited. All rights reserved. @@ -233,7 +233,7 @@ __Vectors DCD __initial_sp ; Top of Stack DCD PendSV_Handler ; -2 PendSV Handler DCD SysTick_Handler ; -1 SysTick Handler - ; External Interrupts + ; Interrupts ; ToDo: Add here the vectors for the device specific external interrupts handler DCD Interrupt0_Handler ; 0 Interrupt 0 DCD Interrupt1_Handler ; 1 Interrupt 1 @@ -307,6 +307,10 @@ $Handler_Name PROC ; User setup Stack & Heap + IF :LNOT::DEF:__MICROLIB + IMPORT __use_two_region_memory + ENDIF + EXPORT __stack_limit EXPORT __initial_sp IF Heap_Size != 0 ; Heap is provided @@ -321,7 +325,7 @@ $Handler_Name PROC