footprint of FreeRTOS

nobody wrote on Monday, May 07, 2007:

I want to know how to find footprint of FreeRTOS?
Thanks in advanced.

nobody wrote on Monday, May 07, 2007:

Here is a good place to start http://www.freertos.org/FAQMem.html

nobody wrote on Monday, May 07, 2007:

In manual of FreeRTOS i got information about footprint is nearly 4k.

I have PC, so intel processor and BCC compiler ,i have Watcom tool where we can open project file and make, run.

so based on this how can i measure footprint?

Is possible in PC or i should have download some GCC based ARM cross compiler?

nobody wrote on Monday, May 07, 2007:

It will be completely different when compiled for x86 using Watcom, so there is no point compiling using GCC.  Just look at the map file output by the compiler.

nobody wrote on Tuesday, May 08, 2007:

In Map file size is there but it include all application size also.

I want RTOS size only. That include (Source folder only) i suppose.

I want that size only. i have flash in processor example ARM7. To flash it i should know size of RTOS.

How can i get it?

nobody wrote on Tuesday, May 08, 2007:

The top of the map file contains the code size of every module.  You need to add up the size of the FreeRTOS modules.  Namely task, queue, list and port.

nobody wrote on Tuesday, May 08, 2007:

Is in Segment area you r telling?

nobody wrote on Tuesday, May 08, 2007:

That RTOS size will same for all Architecture & compiler or it could differ?
I counted size from Map file ( in Segment area : segment , address , size) it is nearly 10 k.
Is it right?

nobody wrote on Tuesday, May 08, 2007:

Why do you think it would be the same for all architectures?  Some are 8bit, some 32.  Different compilers generate different code.  Different optimizers are better than others.