2015-06-16 07:28:32 +00:00
|
|
|
/* Blink FreeRTOSConfig overrides.
|
2015-06-05 01:46:25 +00:00
|
|
|
|
2015-06-16 07:28:32 +00:00
|
|
|
This is intended as an example of overriding some of the default FreeRTOSConfig settings,
|
|
|
|
which are otherwise found in FreeRTOS/Source/include/FreeRTOSConfig.h
|
2015-06-05 01:46:25 +00:00
|
|
|
*/
|
|
|
|
|
2015-06-16 22:07:26 +00:00
|
|
|
/* We sleep a lot, so cooperative multitasking is fine. */
|
|
|
|
#define configUSE_PREEMPTION 0
|
2015-06-05 01:46:25 +00:00
|
|
|
|
2015-06-16 07:28:32 +00:00
|
|
|
/* Blink doesn't really need a lot of stack space! */
|
|
|
|
#define configMINIMAL_STACK_SIZE 128
|
2015-06-05 01:46:25 +00:00
|
|
|
|
2015-06-16 07:28:32 +00:00
|
|
|
/* Use the defaults for everything else */
|
|
|
|
#include_next<FreeRTOSConfig.h>
|
2015-06-05 01:46:25 +00:00
|
|
|
|