Update the RX GCC port - optimised build is working, unoptimised not.

This commit is contained in:
Richard Barry 2010-09-21 21:04:39 +00:00
parent 1c56717a0f
commit b2238eb8c0
33 changed files with 6601 additions and 229 deletions

View file

@ -216,9 +216,12 @@ void vApplicationIdleHook( void )
}
/*-----------------------------------------------------------*/
/* The following two functions are here just to allow all three build
/* The following four functions are here just to allow all three build
configurations to use the same vector table. They are not used in this
demo, but linker errors will result if they are not defined. They can
be ignored. */
void vT0_1InterruptHandler( void ) {}
void vT2_3InterruptHandler( void ) {}
void vT0_1_ISR_Wrapper( void ) {}
void vT2_3_ISR_Wrapper( void ) {}
void vEMAC_ISR_Wrapper( void ) {}
void vTimer2_ISR_Wrapper( void ) {}
volatile unsigned long ulHighFrequencyTickCount = 0;