Missing heap_caps_malloc. issue #102

pull/103/head v0.9.10
Hieromon Ikasamo 5 years ago
parent 68d854a5d7
commit 4ab0f750ac
  1. 3
      src/AutoConnectElementJson.h

@ -82,7 +82,8 @@ struct SpiRamAllocatorST {
else {
caps = MALLOC_CAP_8BIT;
AC_DBG("PSRAM not found, JSON buffer allocates to the heap.\n");
}
}
return heap_caps_malloc(size,caps);
}
void deallocate(void* pointer) {
heap_caps_free(pointer);

Loading…
Cancel
Save