#define configUSE_ALTERNATIVE_API 0\r
#define configUSE_QUEUE_SETS 1\r
#define configUSE_TASK_NOTIFICATIONS 1\r
-#define configSUPPORT_STATIC_ALLOCATION 0\r
-#define configSUPPORT_DYNAMIC_ALLOCATION 1\r
+#define configSUPPORT_STATIC_ALLOCATION 1\r
\r
/* Software timer related configuration options. */\r
#define configUSE_TIMERS 1\r
<ClCompile Include="..\..\Source\event_groups.c" />\r
<ClCompile Include="..\..\Source\portable\MemMang\heap_5.c" />\r
<ClCompile Include="..\..\Source\stream_buffer.c" />\r
- <ClCompile Include="..\..\Source\task_pool.c" />\r
<ClCompile Include="..\..\Source\timers.c" />\r
<ClCompile Include="..\Common\Minimal\AbortDelay.c" />\r
<ClCompile Include="..\Common\Minimal\BlockQ.c" />\r
<ClCompile Include="..\Common\Minimal\MessageBufferAMP.c">\r
<Filter>Demo App Source\Full_Demo\Common Demo Tasks</Filter>\r
</ClCompile>\r
- <ClCompile Include="..\..\Source\task_pool.c">\r
- <Filter>FreeRTOS Source\Source</Filter>\r
- </ClCompile>\r
</ItemGroup>\r
<ItemGroup>\r
<ClInclude Include="FreeRTOSConfig.h">\r
#include <stdlib.h>\r
#include <conio.h>\r
\r
+/* Visual studio intrinsics used so the __debugbreak() function is available\r
+should an assert get hit. */\r
+#include <intrin.h>\r
+\r
/* FreeRTOS kernel includes. */\r
#include "FreeRTOS.h"\r
#include "task.h"\r
}\r
}\r
\r
+ /* Cause debugger break point if being debugged. */\r
+ __debugbreak();\r
+\r
/* You can step out of this function to debug the assertion by using\r
the debugger to set ulSetToNonZeroInDebuggerToContinue to a non-zero\r
value. */\r