Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/AutoConnect/commit/9a496bab218a56d506c8398f85aa715cf4a9f654?style=split&whitespace=ignore-eol You should set ROOT_URL correctly, otherwise the web may not work correctly.

Missing heap_caps_malloc. issue #102

pull/110/head
Hieromon Ikasamo 6 years ago
parent af998981ee
commit 9a496bab21
  1. 1
      src/AutoConnectElementJson.h

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

Loading…
Cancel
Save