Phil Jansen

Results 7 issues of Phil Jansen

While trying to figure out how to get up to 100% received packet reliability, I came across something that confused me: In RX.cpp getPacket(), ```lastRadioPacketeRecievedTime``` and ```nextAutomaticChannelSwitch``` seem to be...

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()...