Quality RTOS & Embedded Software

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


Loading

FreeRTOS on NXP LPC1788, malloc() failure with heap_3.c

Posted by jshentu on May 21, 2016

Hello,

I am experiencing failure with malloc() function. Details of the target system is given as below: MCU: LPC1788FBD208 OS: FreeRTOS SDRAM: MT48LC4M16A2 Original Evaluation Kit: UEZGUI-1788-70WVT Sample Project: uEZv2.06SourceForge

I am using the heap_3.c module. Function malloc() is dead at first time when it is called, requiring 76 bytes to be allocated. When I check the configuration of the heap size, it is far bigger than the required size. Could you technical support guys help identify the problem? Thanks in advance.


heap_3 code

~~~ void *pvPortMalloc( size_t xWantedSize ) { void *pvReturn;

vTaskSuspendAll(); { pvReturn = malloc(xWantedSize ); } xTaskResumeAll();

if( configUSEMALLOCFAILED_HOOK == 1 )

{ if( pvReturn == NULL ) { extern void vApplicationMallocFailedHook( void ); vApplicationMallocFailedHook(); } }

endif

return pvReturn; } ~~~


Heap Size defined in FreeRTOSConfig.h

~~~

ifndef configMINIMALSTACKSIZE
define configMINIMALSTACKSIZE ( 128 )
endif
ifndef configTOTALHEAPSIZE
define configTOTALHEAPSIZE ( ( size_t ) (( 32 * 1024 ) - 64))
endif

~~~

I have tried to increase the heap size up to 48k and reduce the heap size to 20k. The malloc dead lock keeps the same. There is no improvement.


FreeRTOS on NXP LPC1788, malloc() failure with heap_3.c

Posted by rtel on May 21, 2016

Sample Project: uEZv2.06SourceForge

That is not a demo we provide ourselves (I don't think?), and as it seems to be a SourceForge project (guessing from FDI) then they will have a support forum too.

I am using the heap_3.c module. Function malloc() is dead at first time when it is called, requiring 76 bytes to be allocated. When I check the configuration of the heap size, it is far bigger than the required size. Could you technical support guys help identify the problem? Thanks in advance.

If you are using heap3 then FreeRTOS is not providing the heap implementation, it is simply wrapping the calls to malloc() to make them thread safe. The heap is provided by your C run time environment, and configTOTALHEAP_SIZE is not being used. See http://www.freertos.org/a00111.html for more information.

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