MemoryFree icon indicating copy to clipboard operation
MemoryFree copied to clipboard

Arduino MemoryFree library. Hosting it on github for easy access

Results 7 MemoryFree issues
Sort by recently updated
recently updated
newest added

This is my code. ``` #include #include "MemoryFree.h" void setup() { Serial.begin(9600); Serial.print("\r\nStart / FM : "); Serial.println(freeMemory()); xTaskCreate(Task1, "task1", 128, NULL, 1, NULL); Serial.print("After Create Task / FM :...

Compiler yabs about losing precision: ~/Arduino/libraries/MemoryFree/src/MemoryFree.cpp:44:7: error: cast from 'void*' to 'int' loses precision [-fpermissive] Using intptr_t type (as per C99 I believe) is recommended because it guarantees to hold...

The original author of this code is Paul Grayson. They published it as part of the pololu/libpololu-avr repository: https://github.com/pololu/libpololu-avr/blob/master/src/OrangutanResources/OrangutanResources.cpp Although that file has a Creative Commons BY-SA 3.0 license, Paul...

This library doesn't appear to contain a licence so it's not clear how it's allowed to be used. Is it copyrighted? Is it in the public domain? Without a licence...

Hi, I get the following error when I compile the code: > Arduino: 1.8.1 Hourly Build 2017/01/05 05:34 (Windows 8.1), Board: "Nano Zero (Native USB Port)" > > libraries\MemoryFree\MemoryFree.cpp.o: In...

Added vim related entries to .gitignore from https://github.com/github/gitignore/blob/master/Global/Vim.gitignore Verfied code against Arduino 1.6.1 running on Arduino Leonardo

See updated code at http://playground.arduino.cc/Code/AvailableMemory