Removed unused function from IAR CM4F port.c.

Modified the stack alignment when a task first starts in the IAR CM4F port.
This commit is contained in:
Richard Barry 2012-04-16 17:04:42 +00:00
parent 6360632cca
commit 7a0996f246
3 changed files with 9 additions and 12 deletions

View file

@ -117,6 +117,10 @@ extern void vPortClearInterruptMask( void );
#define portSET_INTERRUPT_MASK_FROM_ISR() 0;vPortSetInterruptMask()
#define portCLEAR_INTERRUPT_MASK_FROM_ISR(x) vPortClearInterruptMask();(void)x
/* There are an uneven number of items on the initial stack, so
portALIGNMENT_ASSERT_pxCurrentTCB() will trigger false positive asserts. */
#define portALIGNMENT_ASSERT_pxCurrentTCB ( void )
/*-----------------------------------------------------------*/
/* Task function macros as described on the FreeRTOS.org WEB site. */