]> git.sur5r.net Git - freertos/commitdiff
Update to use new port layer.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Mon, 24 Mar 2008 11:31:41 +0000 (11:31 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Mon, 24 Mar 2008 11:31:41 +0000 (11:31 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@268 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Demo/CORTEX_LM3S102_GCC/init/startup.c
Demo/CORTEX_LM3S102_GCC/makedefs

index 7958960198b20b0c66ee264f093e89bacd9e671f..fcc30d021b852a0e7073c53e551044e9bf6a088d 100644 (file)
@@ -34,6 +34,7 @@ void FaultISR(void);
 extern void xPortPendSVHandler(void);\r
 extern void xPortSysTickHandler(void);\r
 extern void vUART_ISR( void );\r
+extern void vPortSVCHandler( void );\r
 \r
 //*****************************************************************************\r
 //\r
@@ -73,7 +74,7 @@ void (* const g_pfnVectors[])(void) =
     0,                                      // Reserved\r
     0,                                      // Reserved\r
     0,                                      // Reserved\r
-    0,                                                         // SVCall handler\r
+    vPortSVCHandler,                                           // SVCall handler\r
     0,                                      // Debug monitor handler\r
     0,                                      // Reserved\r
     xPortPendSVHandler,                     // The PendSV handler\r
index 8f7a62be5718484352942968bcee4c429df21f21..cbc000dae1680468673cdf0f38b11df858a0544e 100644 (file)
@@ -51,7 +51,7 @@ ifeq (${COMPILER}, gcc)
 #
 # The command for calling the compiler.
 #
-CC=arm-stellaris-eabi-gcc
+CC=arm-none-eabi-gcc
 
 #
 # The flags passed to the assembler.
@@ -71,12 +71,12 @@ CFLAGS=-mthumb         \
 #
 # The command for calling the library archiver.
 #
-AR=arm-stellaris-eabi-ar
+AR=arm-none-eabi-ar
 
 #
 # The command for calling the linker.
 #
-LD=arm-stellaris-eabi-ld
+LD=arm-none-eabi-ld
 
 #
 # The flags passed to the linker.
@@ -96,7 +96,7 @@ LIBC=${shell ${CC} -mthumb -march=armv6t2 -print-file-name=libc.a}
 #
 # The command for extracting images from the linked executables.
 #
-OBJCOPY=arm-stellaris-eabi-objcopy
+OBJCOPY=arm-none-eabi-objcopy
 
 endif