File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -116,8 +116,8 @@ typedef int16_t lv_coord_t;
116
116
# define LV_MEM_AUTO_DEFRAG 1
117
117
#else /*LV_MEM_CUSTOM*/
118
118
#define LV_MEM_CUSTOM_INCLUDE <stdlib.h> /*Header for the dynamic memory function*/
119
- #define LV_MEM_CUSTOM_ALLOC malloc /*Wrapper to malloc*/
120
- #define LV_MEM_CUSTOM_FREE free /*Wrapper to free*/
119
+ #define LV_MEM_CUSTOM_ALLOC hasp_malloc /*Wrapper to malloc*/
120
+ #define LV_MEM_CUSTOM_FREE hasp_free /*Wrapper to free*/
121
121
#endif /*LV_MEM_CUSTOM*/
122
122
123
123
#ifndef LV_VDB_SIZE
Original file line number Diff line number Diff line change @@ -105,8 +105,8 @@ typedef int16_t lv_coord_t;
105
105
# define LV_MEM_AUTO_DEFRAG 1
106
106
#else /*LV_MEM_CUSTOM*/
107
107
# define LV_MEM_CUSTOM_INCLUDE <stdlib.h> /*Header for the dynamic memory function*/
108
- # define LV_MEM_CUSTOM_ALLOC malloc /*Wrapper to malloc*/
109
- # define LV_MEM_CUSTOM_FREE free /*Wrapper to free*/
108
+ # define LV_MEM_CUSTOM_ALLOC hasp_malloc /*Wrapper to malloc*/
109
+ # define LV_MEM_CUSTOM_FREE hasp_free /*Wrapper to free*/
110
110
#endif /*LV_MEM_CUSTOM*/
111
111
112
112
/* Use the standard memcpy and memset instead of LVGL's own functions.
You can’t perform that action at this time.
0 commit comments