have a small problem with zalloc
Code: Select all
char *recv_buf = (char *)zalloc(512);
is there a change in esp-idf?
btw:
lwip/mem.h
Code: Select all
#ifndef mem_zalloc
#define mem_zalloc(s) ({const char *file = mem_debug_file; pvPortZalloc(s, file, __LINE__);})
rudi