STM32H750VB_EPD/Core/Inc/user_lvgl_disp.h

14 lines
420 B
C

#ifndef __USER_LVGL_DISP_H
#define __USER_LVGL_DISP_H
#include "lvgl.h"
#include "depg0213_epd.h"
void _epd_set_px_cb(lv_disp_drv_t *disp_drv, uint8_t *buf,
lv_coord_t buf_w, lv_coord_t x, lv_coord_t y, lv_color_t color, lv_opa_t opa);
void _epd_rounder_cb(lv_disp_drv_t *disp_drv, lv_area_t *area);
void _epd_flush_cb(lv_disp_drv_t *disp_drv, const lv_area_t *area, lv_color_t *color_p);
#endif