mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-19 09:38:32 -04:00
FreeRTOS source updates:
+ Add the pre-existing 64-bit Cortex-A53 port layer into the head revision of the main repository. Demo application updates: + Update Zynq demo to use SDK version 2015.4 + Add task static allocation standard demo to Zynq demo. + Make the XScuGic object accessible outside of the vConfigureTickInterrupt(), again in the Zynq demo.
This commit is contained in:
parent
ea95020ffd
commit
51560d9a96
167 changed files with 1756 additions and 47 deletions
|
@ -87,6 +87,9 @@
|
|||
/* Demo program include files. */
|
||||
#include "StaticAllocation.h"
|
||||
|
||||
/* Exclude the entire file if configSUPPORT_STATIC_ALLOCATION is 0. */
|
||||
#if( configSUPPORT_STATIC_ALLOCATION == 1 )
|
||||
|
||||
#define staticTASK_PRIORITY ( tskIDLE_PRIORITY + 2 )
|
||||
|
||||
/*
|
||||
|
@ -307,4 +310,7 @@ BaseType_t xReturn;
|
|||
|
||||
return xReturn;
|
||||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
/* Exclude the entire file if configSUPPORT_STATIC_ALLOCATION is 0. */
|
||||
#endif /* configSUPPORT_STATIC_ALLOCATION == 1 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue