Quality RTOS & Embedded Software

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


Loading

vsPrintf() takes too much memory in RTOS.

Posted by Samuel on October 23, 2011
In my code, there is a function "xUartPrintF()" which get called by every task to print out message, it calls a library function "vsprintf()". I find that "vsprintf()" take too much memory, is there anyway to avoid it?


Here is the code:

static char PrintFBuffer[100];

UART_STATUS xUartPrintF(const char* format, ...)
{
va_list args;

/* Open variable parameter list */
va_start(args,format);

/* Format the string */
if (!vsprintf(PrintFBuffer,format,args))
return UART_STATUS_FAIL;

/* Send the string via RS232 */
if (xUartTransmit(PrintFBuffer) != UART_STATUS_SUCCESS)
return UART_STATUS_FAIL;

/* End parameter list */
va_end(args);

return UART_STATUS_SUCCESS;
}

RE: vsPrintf() takes too much memory in RTOS.

Posted by Richard on October 23, 2011
“vsPrintf() takes too much memory in RTOS”


How much memory it takes is a characteristic of the library you are using, not of the RTOS. Some standard libraries are massive, consume monster amounts of stack, and even dynamically allocate memory within their implementations - while others are lean and mean and work well in resource constrained embedded systems.

“get called by every task to print out message”


As this function is a global resource and not re-entrant, I hope it has some external mutual exclusion being used.

“is there anyway to avoid it”


There is a minimal sprintf() implementation provided with the FreeRTOS distribution (as a third party piece of code). It can be used if you don't want to print out floating point numbers. Find (multiple copies of) it by searching the FreeRTOS/Demo directory for a file called printf-stdarg.c. Including it in your project should allow its implementation to be used in preference to the standard libraries version. Don't use the snprintf() version defined in the same file though, as it is not really implemented, just included to allow linking.

Hope that helps.

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