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:
@ -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 */
|
||||
|
Reference in New Issue
Block a user