mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-19 09:38:32 -04:00
Update to include the option of saving/restoring the floating point context.
This commit is contained in:
parent
6177c6e4a4
commit
45fceb4bdd
4 changed files with 247 additions and 1 deletions
|
@ -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. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue