Hello,
How can I detect how much RAM is still free on the heap during runtime, without a debugger attached, just from within the application?
Cheers
Trax
Hello,
How can I detect how much RAM is still free on the heap during runtime, without a debugger attached, just from within the application?
Cheers
Trax
Hi,
Heap should not be used by the SDK examples. If you use head and need to keep track of the available size, you could store the heap size in a variable and decrement/increment it when you call malloc/free to keep track of the used size.
Best regards,
Jørgen