Tags
Category Archives: embedded
Visualizing the Heap on Embedded Systems
Debugging a memory leak can seem trivial compared to debugging fragmentation. Faced with such a problem recently, I decided I really needed to visualize what the heap looked like to determine how to fix the problem. Many embedded systems avoid using dynamic memory allocation entirely to avoid just this kind of problem, among others. But [...]

Visualizing the Heap on Embedded Systems – Part II