You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
webclient/webclient_internal.h

21 lines
395 B
C

#ifndef WEBCLIENT_INTERNAL_H__
#define WEBCLIENT_INTERNAL_H__
#include <rtthread.h>
#ifdef RT_USING_ESP_PSRAM
#include <drv_sdram.h>
#define web_malloc sdram_malloc
#define web_free sdram_free
#define web_realloc sdram_realloc
#define web_calloc sdram_calloc
#else
#define web_malloc malloc
#define web_free free
#define web_realloc realloc
#define web_calloc calloc
#endif
#endif