Quality RTOS & Embedded Software

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


Loading

Available memory - Am I understanding this correctly ?

Posted by lactose99 on August 31, 2014

Hello. I have been seeing some strange stuff in my software (debugger stepping wrong, variables passed to a function that land with the wrong value...). I wrote a quick function to see how much free memory is left, and it indicates I am out of memory.

Some info: -using RX600 CPU -using heap3.c -optimization = 0

My outOfMemory function assumes stack is at the top moving down, and heap is on the bottom moving up. Experimentally, this matches my observations. So is measuring from the bottom of the stack to the top of the heap a valid way of determining free memory ?

~~~~~~ void outOfMemoryCheck() { // address of this var used to find bottom of stack int32t testStackVar = 0; uint8t *pHeap = NULL;

define TESTALLOCATIONSIZE 8
// determine the top of the heap
pHeap = malloc(TEST_ALLOCATION_SIZE);

// available_memory is bottom_of_stack - top_of_heap
// stack bottom should never be below heap top
if((NULL == pHeap) || ((int32_t) pHeap > (int32_t) &testStackVar))
{
	// we are out of memory, loop here 
	while(1);
}	


free(pHeap);

} ~~~~~~

Thanks.


Available memory - Am I understanding this correctly ?

Posted by richard_damon on September 1, 2014

No, this is not true in FreeRTOS. Each tasks stack will be allocated from within the FreeRTOS heap (which with heap3.c is the C heap).

The primary issue is that you no longer have THE stack, but each task has their own stack.


Available memory - Am I understanding this correctly ?

Posted by lactose99 on September 1, 2014

Wow, thanks for the quick response. My apologies, I did not qualify that I am calling this outOfMemoryCheck function from a comm sci TX interrupt. In that case, I believe I am looking at the system stack.

In that case, I can assume that stack bottom should never be below heap top. Correct ?


Available memory - Am I understanding this correctly ?

Posted by richard_damon on September 1, 2014

It depend on the port, some will use the starting stack for the interrupt routines, some don't.

Best is to check your linker map and the addresses that are being reported.


[ 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