mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-24 15:31:56 -04:00
Update to use new port layer.
This commit is contained in:
parent
6e9d6a2bdf
commit
3d099d43f5
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue