Hi.
I'm having a small problem, when I use calloc() in my application the application wont start up, it never reach main.
Are there some setting that I need to enable, or..
Hope somebody can help me, thanks Soeren Panduro
a couple of solutions: * you might need to make a call to a library function to allocate the pool for dynamic memory allocation. * does your startup file indicate the presence of a heap? * don't use dynamic memory allocation all together! (the best choice, probably)
don't use dynamic memory allocation all together! (the best choice, probably)
Well, that depends on whether the OP is using some small ARM micro with a couple of kilobytes of RAM, or a bigger chip with a couple of megabytes. :)