lv_port_disp.c 1.8 KB
Newer Older
mysterywolf's avatar
mysterywolf 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * Copyright (c) 2006-2021, RT-Thread Development Team
 *
 * SPDX-License-Identifier: Apache-2.0
 *
 * Change Logs:
 * Date           Author       Notes
 * 2021-10-18     Meco Man     The first version
 */
#include <lvgl.h>
#include <drv_lcd.h>

#define MY_DISP_HOR_RES LCD_W
mysterywolf's avatar
mysterywolf 已提交
14
#define DISP_BUFFER_LINES 10
mysterywolf's avatar
mysterywolf 已提交
15 16 17 18 19

/*A static or global variable to store the buffers*/
static lv_disp_draw_buf_t disp_buf;

/*Static or global buffer(s). The second buffer is optional*/
mysterywolf's avatar
mysterywolf 已提交
20 21
static lv_color_t buf_1[MY_DISP_HOR_RES * DISP_BUFFER_LINES];
static lv_color_t buf_2[MY_DISP_HOR_RES * DISP_BUFFER_LINES];
mysterywolf's avatar
mysterywolf 已提交
22 23 24 25 26 27 28 29

static lv_disp_drv_t disp_drv;  /*Descriptor of a display driver*/

/*Flush the content of the internal buffer the specific area on the display
 *You can use DMA or any hardware acceleration to do this operation in the background but
 *'lv_disp_flush_ready()' has to be called when finished.*/
static void disp_flush(lv_disp_drv_t * disp_drv, const lv_area_t * area, lv_color_t * color_p)
{
mysterywolf's avatar
mysterywolf 已提交
30
    /* color_p is a buffer pointer; the buffer is provided by LVGL */
mysterywolf's avatar
mysterywolf 已提交
31 32 33 34 35 36 37 38 39 40
    lcd_fill_array(area->x1, area->y1, area->x2, area->y2, color_p);

    /*IMPORTANT!!!
     *Inform the graphics library that you are ready with the flushing*/
    lv_disp_flush_ready(disp_drv);
}

void lv_port_disp_init(void)
{
    /*Initialize `disp_buf` with the buffer(s). With only one buffer use NULL instead buf_2 */
mysterywolf's avatar
mysterywolf 已提交
41
    lv_disp_draw_buf_init(&disp_buf, buf_1, buf_2, MY_DISP_HOR_RES * DISP_BUFFER_LINES);
mysterywolf's avatar
mysterywolf 已提交
42 43 44 45

    lv_disp_drv_init(&disp_drv); /*Basic initialization*/

    /*Set the resolution of the display*/
mysterywolf's avatar
mysterywolf 已提交
46 47
    disp_drv.hor_res = LCD_W;
    disp_drv.ver_res = LCD_H;
mysterywolf's avatar
mysterywolf 已提交
48 49 50 51 52 53 54 55 56 57

    /*Set a display buffer*/
    disp_drv.draw_buf = &disp_buf;

    /*Used to copy the buffer's content to the display*/
    disp_drv.flush_cb = disp_flush;

    /*Finally register the driver*/
    lv_disp_drv_register(&disp_drv);
}