> And note that the RAM usage is only your "global" variables, > not the stack or any kind of dynamically allocated memory.
Let us flip this around to make it more clear: It is the developer's responsibility to ensure that there is sufficient RAM to meet your application's total worst-case requirements including: - data+BSS (reported by "make platform") - stack used by main and by interrupts (500 bytes seems to be sufficient for most apps) - any dynamic RAM that might be used (does not apply to the vast majority of TinyOS apps) John Regehr _______________________________________________ Tinyos-help mailing list [email protected] https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help
