72b61b17f8
Closes #12
15 lines
465 B
C
15 lines
465 B
C
/* Blink FreeRTOSConfig overrides.
|
|
|
|
This is intended as an example of overriding some of the default FreeRTOSConfig settings,
|
|
which are otherwise found in FreeRTOS/Source/include/FreeRTOSConfig.h
|
|
*/
|
|
|
|
/* We sleep a lot, so pre-emptive multitasking is fine. */
|
|
#define configUSE_PREEMPTION 1
|
|
|
|
/* Blink doesn't really need a lot of stack space! */
|
|
#define configMINIMAL_STACK_SIZE 128
|
|
|
|
/* Use the defaults for everything else */
|
|
#include_next<FreeRTOSConfig.h>
|
|
|