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/using_VTOR_pg.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'docs/Core/html/using_VTOR_pg.html') diff --git a/docs/Core/html/using_VTOR_pg.html b/docs/Core/html/using_VTOR_pg.html index 38958cc..b3b0a39 100644 --- a/docs/Core/html/using_VTOR_pg.html +++ b/docs/Core/html/using_VTOR_pg.html @@ -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
@@ -115,9 +115,9 @@ $(document).ready(function(){initNavTree('using_VTOR_pg.html','');});
#include "ARMCM3.h" // Device header
/* externals from startup_ARMCM3.s */
-
extern uint32_t __Vectors[]; /* vector table ROM */
+
extern uint32_t __Vectors[]; /* vector table ROM */
-
#define VECTORTABLE_SIZE (256) /* size Cortex-M3 vector table */
+
#define VECTORTABLE_SIZE (256) /* size Cortex-M3 vector table */
#define VECTORTABLE_ALIGNMENT (0x100ul) /* 16 Cortex + 32 ARMCM3 = 48 words */
/* next power of 2 = 256 */
@@ -129,7 +129,7 @@ $(document).ready(function(){initNavTree('using_VTOR_pg.html','');});
*----------------------------------------------------------------------------*/
volatile uint32_t msTicks = 0; /* counts 1ms timeTicks */
void SysTick_Handler(void) {
-
msTicks++; /* increment counter */
+
msTicks++; /* increment counter */
}
/*----------------------------------------------------------------------------
@@ -137,7 +137,7 @@ $(document).ready(function(){initNavTree('using_VTOR_pg.html','');});
*----------------------------------------------------------------------------*/
volatile uint32_t msTicks_RAM = 0; /* counts 1ms timeTicks */
void SysTick_Handler_RAM(void) {
-
msTicks_RAM++; /* increment counter */
+
msTicks_RAM++; /* increment counter */
}
/*----------------------------------------------------------------------------
@@ -151,7 +151,7 @@ $(document).ready(function(){initNavTree('using_VTOR_pg.html','');});
}
/* replace SysTick Handler */
vectorTable_RAM[SysTick_IRQn + 16] = (uint32_t)SysTick_Handler_RAM;
-
+
/* relocate vector table */
SCB->VTOR = (uint32_t)&vectorTable_RAM;
@@ -169,7 +169,7 @@ $(document).ready(function(){initNavTree('using_VTOR_pg.html','');});