Hi,
I'm writing a memory pool manager that allocates fixed-size memory blocks. My question is should I allocate my memory from the .sysmem (heap)? (i.e. set the heap a certain size at build time) is this the 'right' way to do this?
I assume I would then face competition from malloc or other routines that might try to use the heap as well. But if I don't employ malloc anywhere in my code, do i need to worry about anything? if anyone would be as kind as to shed some light on this issue i would be very grateful.
regards,
Imran