Skip to content

Commit

Permalink
changed the total heap size in freertos config to a log base 2 number
Browse files Browse the repository at this point in the history
  • Loading branch information
HardyYu committed Aug 24, 2024
1 parent be11e5a commit 3b26c72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Boardfiles/nucleol552zeq/Core/Inc/FreeRTOSConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
#define configTICK_RATE_HZ ((TickType_t)1000)
#define configMAX_PRIORITIES ( 56 )
#define configMINIMAL_STACK_SIZE ((uint16_t)128)
#define configTOTAL_HEAP_SIZE ((size_t)81920)
#define configTOTAL_HEAP_SIZE ((size_t)65536)
#define configMAX_TASK_NAME_LEN ( 16 )
#define configUSE_TRACE_FACILITY 1
#define configUSE_16_BIT_TICKS 0
Expand Down

0 comments on commit 3b26c72

Please sign in to comment.