Update to use new port layer.

This commit is contained in:
Richard Barry 2008-03-24 11:31:41 +00:00
parent 6e9d6a2bdf
commit 3d099d43f5
2 changed files with 6 additions and 5 deletions

View file

@ -34,6 +34,7 @@ void FaultISR(void);
extern void xPortPendSVHandler(void);
extern void xPortSysTickHandler(void);
extern void vUART_ISR( void );
extern void vPortSVCHandler( void );
//*****************************************************************************
//
@ -73,7 +74,7 @@ void (* const g_pfnVectors[])(void) =
0, // Reserved
0, // Reserved
0, // Reserved
0, // SVCall handler
vPortSVCHandler, // SVCall handler
0, // Debug monitor handler
0, // Reserved
xPortPendSVHandler, // The PendSV handler

View 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