1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-22 21:23:07 +03:00
esp8266/tests/test_umm_malloc/test_umm_malloc.ino

14 lines
199 B
C++

// 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() {
}