MicroBlaze projects: Split build configurations into blinky and full. Implement partest.c. Everything still a work in progress.

This commit is contained in:
Richard Barry 2011-06-06 21:01:42 +00:00
parent 9f0bf057e6
commit 4cda2df265
7 changed files with 799 additions and 268 deletions

View file

@ -383,7 +383,6 @@ extern void vApplicationClearTimerInterrupt();
static portBASE_TYPE prvInitialiseInterruptController( void )
{
portBASE_TYPE xStatus;
extern Xil_ExceptionHandler vPortFreeRTOSInterruptHandler;
xStatus = XIntc_Initialize( &xInterruptControllerInstance, configINTERRUPT_CONTROLLER_TO_USE );
@ -392,10 +391,6 @@ extern Xil_ExceptionHandler vPortFreeRTOSInterruptHandler;
/* Initialise the exception table. */
Xil_ExceptionInit();
/* Register the interrupt controller handle that uses the exception
table. */
//_RB_ Xil_ExceptionRegisterHandler( XIL_EXCEPTION_ID_INT, vPortFreeRTOSInterruptHandler, NULL );
/* Service all pending interrupts each time the handler is entered. */
XIntc_SetIntrSvcOption( xInterruptControllerInstance.BaseAddress, XIN_SVC_ALL_ISRS_OPTION );