Quality RTOS & Embedded Software

 Real time embedded FreeRTOS RSS feed 
Quick Start Supported MCUs PDF Books Trace Tools Ecosystem


Loading

How to calculate configTOTAL_HEAP_SIZE?

Posted by Paul on January 4, 2007
I am using LPC2138, with 32K RAM.
I am using heap_1.c
I have 9 tasks running. the total stack size is 20480 bytes.

Does that mean i just need to set up the configTOTAL_HEAP_SIZE to 20480 bytes?

Thanks

Paul

RE: How to calculate configTOTAL_HEAP_SIZE?

Posted by embeddedc on January 5, 2007
It needs to be larger than that as you also need to allocate the task control blocks for the tasks.

A couple of ideas to help you.

i/ In pvPortMalloc (heap_1.c) add the following lines before the return statement.

if( pvReturn == NULL )
{
/* Place some code here for a breakpoint */
}

then add a break point where specified. If you run out of heap then it will break on your break point.


ii/ Fill the heap with a known value

memcpy( xHeap.ucHeap, 0xaa, configTOTAL_HEAP_SIZE );

before you use the heap. Then you can look at the heap and see how much remains.

RE: How to calculate configTOTAL_HEAP_SIZE?

Posted by Paul on January 5, 2007
Thanks a lot

I think you are using a JTAG debugger.
I just got one WIGGLER, cost me $125. I am going to set it up today.
I am using Eclipse, CDT, OCDEMON. any suggestions?

RE: How to calculate configTOTAL_HEAP_SIZE?

Posted by Paul on January 5, 2007
You metioned that "to allocate the task control blocks for the tasks".
Do I have to that? Where can I do that?
Thank you!

RE: How to calculate configTOTAL_HEAP_SIZE?

Posted by Richard on January 5, 2007
When you create a task the scheduler grabs memory from the heap - into which it places the TCB and the task stack. You do not need to do this manually.

Regards.


[ Back to the top ]    [ About FreeRTOS ]    [ Privacy ]    [ Sitemap ]    [ ]


Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.

Latest News

NXP tweet showing LPC5500 (ARMv8-M Cortex-M33) running FreeRTOS.

Meet Richard Barry and learn about running FreeRTOS on RISC-V at FOSDEM 2019

Version 10.1.1 of the FreeRTOS kernel is available for immediate download. MIT licensed.

View a recording of the "OTA Update Security and Reliability" webinar, presented by TI and AWS.


Careers

FreeRTOS and other embedded software careers at AWS.



FreeRTOS Partners

ARM Connected RTOS partner for all ARM microcontroller cores

Espressif ESP32

IAR Partner

Microchip Premier RTOS Partner

RTOS partner of NXP for all NXP ARM microcontrollers

Renesas

STMicro RTOS partner supporting ARM7, ARM Cortex-M3, ARM Cortex-M4 and ARM Cortex-M0

Texas Instruments MCU Developer Network RTOS partner for ARM and MSP430 microcontrollers

OpenRTOS and SafeRTOS

Xilinx Microblaze and Zynq partner