This commit is contained in:
Richard Barry 2006-06-08 09:16:29 +00:00
parent 946da76519
commit 05023971cb
389 changed files with 11479 additions and 464 deletions

View file

@ -1,5 +1,5 @@
/*
FreeRTOS.org V4.0.2 - Copyright (C) 2003-2006 Richard Barry.
FreeRTOS.org V4.0.3 - Copyright (C) 2003-2006 Richard Barry.
This file is part of the FreeRTOS.org distribution.

View file

@ -1,5 +1,5 @@
/*
FreeRTOS.org V4.0.2 - Copyright (C) 2003-2006 Richard Barry.
FreeRTOS.org V4.0.3 - Copyright (C) 2003-2006 Richard Barry.
This file is part of the FreeRTOS.org distribution.

View file

@ -1,5 +1,5 @@
/*
FreeRTOS.org V4.0.2 - Copyright (C) 2003-2006 Richard Barry.
FreeRTOS.org V4.0.3 - Copyright (C) 2003-2006 Richard Barry.
This file is part of the FreeRTOS.org distribution.

View file

@ -25,7 +25,11 @@
_vectors:
.word __stack_end__
.word reset_handler
#ifdef STARTUP_FROM_RESET
.word _start
#else
.word reset_wait
#endif /* STARTUP_FROM_RESET */
.word NmiISR
.word FaultISR
.word 0 // Populate if using MemManage (MPU)
@ -110,6 +114,6 @@ DEFAULT_ISR_HANDLER Analog_Comparator_2_ISR
DEFAULT_ISR_HANDLER System_Control_ISR
DEFAULT_ISR_HANDLER FLASH_Control_ISR
#ifndef STARTUP_FROM_RESET
DEFAULT_ISR_HANDLER reset_wait
#endif /* STARTUP_FROM_RESET */