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

Demo/CORTEX_LM3S811_GCC/init/startup.c
Demo/CORTEX_LM3S811_GCC/makedefs

index 407a49792e60d9b5acc75302c6061d972077a537..efd7b414c48469348b3711705556795ed0cc15ef 100644 (file)
@@ -38,6 +38,7 @@ extern void xPortPendSVHandler(void);
 extern void xPortSysTickHandler(void);\r
 extern void vUART_ISR( void );\r
 extern void vGPIO_ISR( void );\r
+extern void vPortSVCHandler( void );\r
 \r
 //*****************************************************************************\r
 //\r
@@ -78,7 +79,7 @@ void (* const g_pfnVectors[])(void) =
     0,                                      // Reserved\r
     0,                                      // Reserved\r
     0,                                      // Reserved\r
-    IntDefaultHandler,                      // SVCall handler\r
+    vPortSVCHandler,                        // SVCall handler\r
     IntDefaultHandler,                      // Debug monitor handler\r
     0,                                      // Reserved\r
     xPortPendSVHandler,                     // The PendSV handler\r
index efd7530d45ac3842d2a86d226caad3d23478e4ed..1a8f4dab594db40eb9775fa135675caa13efb61b 100644 (file)
@@ -60,7 +60,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.
@@ -80,12 +80,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.
@@ -105,7 +105,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