RE: [Tinyos-help] How to measure the memory cost

2008-02-14 Thread Michiel Konstapel
> The local automatic variables are not counted when the make system prints out the RAM usage. I suspect you have some of those in your code. > They are created dynamically on the stack, and thus, it's hard to tell what is the maximum possible stack depth. (There exist static stack depth analysis

Re: [Tinyos-help] How to measure the memory cost

2008-02-14 Thread AIGroup
Hi Janos, thanks for your precious answer. Where can i read more about this? I'm looking for a document but i still don't find it. Thanks a lot for your time. Roberto 2008/2/13, Janos Sallai <[EMAIL PROTECTED]>: > > Roberto, > > > > The local automatic variables are not counted when the make sys

RE: [Tinyos-help] How to measure the memory cost

2008-02-13 Thread Janos Sallai
Roberto, The local automatic variables are not counted when the make system prints out the RAM usage. I suspect you have some of those in your code. They are created dynamically on the stack, and thus, it's hard to tell what is the maximum possible stack depth. (There exist static stack dep