Fixed bug 2700695.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@859 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2009-03-31 15:03:25 +00:00
parent c5569d8fc9
commit d209f631a5
4 changed files with 9 additions and 9 deletions

View File

@ -25,11 +25,9 @@
#include <sam7x_serial.h>
/*
* FIQ Handler, unused in this demo.
* FIQ Handler weak symbol defined in vectors.s.
*/
__attribute__((interrupt("FIQ")))
static void FiqHandler(void) {
}
void FiqHandler(void);
static CH_IRQ_HANDLER(SpuriousHandler) {

View File

@ -26,11 +26,9 @@
#include <sam7x_emac.h>
/*
* FIQ Handler, unused in this demo.
* FIQ Handler weak symbol defined in vectors.s.
*/
__attribute__((interrupt("FIQ")))
static void FiqHandler(void) {
}
void FiqHandler(void);
static CH_IRQ_HANDLER(SpuriousHandler) {

View File

@ -68,4 +68,7 @@ PrefetchHandler:
.weak AbortHandler
AbortHandler:
.weak FiqHandler
FiqHandler:
.loop: b .loop

View File

@ -75,7 +75,8 @@ Win32-MinGW - ChibiOS/RT simulator and demo into a WIN32 process,
*** 1.1.3unstable ***
- FIX: Fixed makefile in STM32 demo, this bug was reported fixed in
version 1.1.2 but it was still there (bug 2686451).
- FIX: Fixed makefile in MSP430 demo (bug 2700690).
- FIX: Fixed makefile in MSP430 demo (bug 2700690).
- FIX: Fixed thumb mode build error in AT91SAM7X demos (bug 2700695).
*** 1.1.2unstable ***
- FIX: Fixed priority inheritance problem with condvars (bug 2674756) and