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:
3
tests/.gitignore
vendored
Normal file
3
tests/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
hardware
|
||||
tmp
|
||||
.env
|
13
tests/test_umm_malloc/test_umm_malloc.ino
Normal file
13
tests/test_umm_malloc/test_umm_malloc.ino
Normal 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() {
|
||||
|
||||
}
|
Reference in New Issue
Block a user