我用的STM32F103ZET6开发板,屏幕是4.3寸8080接口屏,先是移植了FREERTOS,测试任务,OK。但是移植LVGL后,程序就卡死在HardFault_Handler里面。LVGL是8.3版本,我在MAIN函数中调用了lv_port_disp_init()后,运行到remove_free_block(){
block_header_t * prev = block->prev_free;
block_header_t * next = block->next_free;
tlsf_assert(prev && "prev_free field can not be null");
tlsf_assert(next && "next_free field can not be null");
next->prev_free = prev;
prev->next_free = next;