STM32H750XB_Hello/Core/Inc/user_lvgl_impl.h

12 lines
384 B
C

#ifndef __USER_LVGL_IMPL_H
#define __USER_LVGL_IMPL_H
#include <stdint.h>
#include "lvgl.h"
void user_lvgl_impl_log_cb(lv_log_level_t level, const char *file, uint32_t line, const char *fn_name, const char *dsc);
void user_lvgl_impl_flush_cb(lv_disp_drv_t *disp_drv, const lv_area_t *area, lv_color_t *color_p);
void user_lvgl_impl_clean_dcache_cb(lv_disp_drv_t *disp_drv);
#endif