1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-22 08:22:04 +03:00

Remove mem_manager.o from libmain.a (#1630)

This commit is contained in:
Ivan Grokhotkov
2016-02-15 00:24:19 +03:00
parent 4c75793508
commit 30b2a99b3f
3 changed files with 7 additions and 5 deletions

View File

@ -37,6 +37,11 @@ size_t ICACHE_RAM_ATTR xPortGetFreeHeapSize(void)
return umm_free_heap_size();
}
size_t ICACHE_RAM_ATTR xPortWantedSizeAlign(size_t size)
{
return (size + 3) & ~((size_t) 3);
}
void system_show_malloc(void)
{
umm_info(NULL, 1);