MemoryUsage icon indicating copy to clipboard operation
MemoryUsage copied to clipboard

This is a library for Arduino to see memory usage during a program execution.

Results 8 MemoryUsage issues
Sort by recently updated
recently updated
newest added

Hi, I have tested this library and realized that it consumes some SRAM. Then I put some missing F(). It saves about 136 bytes.

This is for a backwards-compatible enhancement to the MemoryUsage library. At this time MemoryUsage is basically a set of macros to collect usage information as text through Serial.print(). I would...

(I am pulling out this comment from #3 as its own topic as I think it will be helpful.) After compiler optimization many expected side effects can disappear: - aggressive...

The MemoryUsage macros provide good insight into what is happening with RAM storage. But it would be nice to have the library return numeric values, too. This could be used...

Two minor changes. I will describe the reasoning in two issues. If you decide to merge, there is no hurry to create a release. I may have another pull request...

This is for an Arduino Uno, which has only 2048 bytes RAM available. The problem is really in examples/FreeRam/FreeRam.ino, but its output is harder to interpret. The actual issue is...

This is for an Arduino UNO, which has 2048 bytes of total RAM. Run the following sketch "GetMemoryTotalSize.ino": ``` #include // Simple example to report memory TOTAL size void setup()...

The routine mu_StackPaint is not executed in section .init1 I use platformio and board = 1284p16m better results with this approach: https://www.avrfreaks.net/comment/1314296#comment-1314296 with little modification to take in account heap:...