Change version number in common files within the FreeRTOS-plus directory and check all demos still execute.

This commit is contained in:
Richard Barry 2013-04-18 10:08:04 +00:00
parent 64a3ab321a
commit c60973c34a
23 changed files with 538 additions and 482 deletions

View file

@ -207,10 +207,10 @@ uint32_t ulInterruptCause;
xSemaphoreGiveFromISR( xEMACRxEventSemaphore, NULL );
}
/* Shortcut to calling portEND_SWITCHING_ISR(). Only do this if you
understand what you are doing! Otherwise use portEND_SWITCHING_ISR()
directly. */
vPortYieldFromISR();
/* ulInterruptCause is used for convenience here. A context switch is
wanted, but coding portEND_SWITCHING_ISR( 1 ) would likely result in a
compiler warning. */
portEND_SWITCHING_ISR( ulInterruptCause );
}
/*-----------------------------------------------------------*/