1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-27 18:02:17 +03:00

Fix error when umm_malloc.h is included from sketch (#1652)

This commit is contained in:
Ivan Grokhotkov
2016-02-19 14:17:09 +03:00
parent 55e5bdfc6c
commit 103b5811be
4 changed files with 24 additions and 1 deletions

3
tests/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
hardware
tmp
.env

View File

@ -0,0 +1,13 @@
// test that we can include umm_malloc.h from sketch (#1652)
#include <umm_malloc/umm_malloc.h>
void setup() {
Serial.begin(115200);
delay(1000);
umm_info(NULL, 1);
}
void loop() {
}