lvgl的显示接口初始化函数没什么好说的,照着配置就行了。重点是disp_flush() 1/*Flush the content of the internal buffer the specific area on the display2* You can use DMA or any hardware acceleration to do this operation in the background but3* 'lv_disp_flush_ready()' has to be called ...
这些都是一些回调函数,可以在执行动作结束之后进行回调。 flush_cb :刷新后调用 rounder_cb :好像是出现一些对齐错误后调用 set_px_cb :设置像素后调用,可能针对一些特殊显示器来用 clear_cb :这个是清屏嘛? monitor_cb :这个用来监测刷新率用的 wait_cb :这个是调用GPU等待时候用的 clean_dcache_cb : drv_...