Update to include the option of saving/restoring the floating point context.

This commit is contained in:
Richard Barry 2008-05-11 09:15:22 +00:00
parent 6177c6e4a4
commit 45fceb4bdd
4 changed files with 247 additions and 1 deletions

View file

@ -114,6 +114,10 @@ void vPortYield( void );
#define portSTACK_GROWTH ( -1 )
#define portTICK_RATE_MS ( ( portTickType ) 1000 / configTICK_RATE_HZ )
#define portNOP() asm volatile ( "NOP" )
/* There are 32 * 32bit floating point regieters, plus the FPSCR to save. */
#define portNO_FLOP_REGISTERS_TO_SAVE ( 32 + 1 )
/*-----------------------------------------------------------*/
/* Task function macros as described on the FreeRTOS.org WEB site. */