Liam Howatt

Results 303 comments of Liam Howatt

Fyi, for a later PR, this issue should be addressed: https://github.com/lvgl/lvgl/pull/7395#issuecomment-2520132756

When the default drive letter was added, we agreed to keep `'/'` as a valid drive letter. I think this warning was an accident.

PR open. Please let me know if it's missing anything.

See the new PR #8033 I am also working on separating GLFW from OpenGL so different OpenGL APIs can be used like EGL.

I think the correct way to use `LV_USE_CUSTOM_MALLOC` is to define your own global functions that match the function prototypes in lv_mem.h and they will be linked by the linker...

Can you please send your linker error? Did you set `LV_USE_STDLIB_MALLOC` to `LV_STDLIB_CUSTOM`?

Is the file that defines the custom `lv_malloc` etc. being compiled?

Sorry, the functions you have to define yourself are these (not `lv_malloc`): ```c void lv_mem_init(void); void lv_mem_deinit(void); lv_mem_pool_t lv_mem_add_pool(void * mem, size_t bytes); void lv_mem_remove_pool(lv_mem_pool_t pool); void * lv_malloc_core(size_t size);...

Where is the library coming from? I can't find `#include ` in https://downloads.arduino.cc/libraries/github.com/lvgl/lvgl-8.3.10.zip