diff options
| author | JF002 <JF002@users.noreply.github.com> | 2021-06-12 09:02:06 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-12 09:02:06 (GMT) |
| commit | 0ce98c7ac7ba66acaf504be9bb042796e12f2733 (patch) | |
| tree | 3f9c7f96f0fab64f581035c72480596a4cc4db43 /src/FreeRTOSConfig.h | |
| parent | 79f0fcb07aa80eb70385223272e29f2ba5657bc8 (diff) | |
| parent | 6d524ebea2c97e309633d5e01c3a1e37c182f27d (diff) | |
Merge pull request #415 from JF002/move-heap-to-static
Move dynamically allocated variables to static variables.
Diffstat (limited to 'src/FreeRTOSConfig.h')
| -rw-r--r-- | src/FreeRTOSConfig.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FreeRTOSConfig.h b/src/FreeRTOSConfig.h index 1518576..07c152d 100644 --- a/src/FreeRTOSConfig.h +++ b/src/FreeRTOSConfig.h @@ -62,7 +62,7 @@ #define configTICK_RATE_HZ 1024 #define configMAX_PRIORITIES (3) #define configMINIMAL_STACK_SIZE (120) -#define configTOTAL_HEAP_SIZE (1024 * 16) +#define configTOTAL_HEAP_SIZE (1024 * 17) #define configMAX_TASK_NAME_LEN (4) #define configUSE_16_BIT_TICKS 0 #define configIDLE_SHOULD_YIELD 1 |
