EASY EAI灵眸科技
直播中

ALSET

3年用户 269经验值
擅长:可编程逻辑,电源/新能源,嵌入式技术,处理器/DSP
私信 关注
[经验]

【EASY EAI Nano开源套件试用体验】6. LVGL软件的移植与测试

LVGL BenchMark 测试

【EASY EAI Nano开源套件试用体验】6. LVGL软件的移植与测试
大信(QQ:8125036)

       电子发烧友和灵眸科技推出EASY EAI Nano开发板的试用。该开发板采用的是Rockchip 的RV1126处理器,该处理器拥有四核32位Cortex®-A7架构,集成2.0 TOPs AI算力的NPU。能够广泛适用物联网边缘计算以及智能应用,如人脸闸机、车载录像、安防监控等方面。
       EASY EAI Nano所带的SDK带有QT图形界面,QT是一个应用非常广泛的界面库。开发板上的人脸识别门禁应用就是使用QT做为图形界面。在移植一个我的一款QT应用时发现,该开发板虽然有QT,但没有QTSVG等库,也就是并没有支持完全,导致移植失败。而在QT上开发,矢量图形是常用的资源,能够解决不同屏幕尺寸的适配问题。
因而转向尝试在EASYEAI Nano上移植LVGL 用户图形库,在EASY EAI Nano上测试LVGL图形应用。
1.png

一、LVGL简介

      LVGL(Light and VersatileGraphics Library,轻巧而多功能的图形库)是一个免费的开放源代码图形库LVGL的作者是来自匈牙利的Gabor Kiss-Vamosikisvegabor,LVGL用C语言编写,以实现最大的兼容性(与C ++兼容),模拟器可在没有嵌入式硬件的PC上启动嵌入式GUI设计,同时LVGL作为一个图形库,它自带着接近三十多种小工具可以供开发者使用。这些强大的构建块按钮搭配上带有非常丝滑的动画以及可以做到平滑滚动的高级图形,同时兼具着不高的配置要求以及开源属性,显著的优势使得LVGL蔚然成风,成为广大开发者在选择GUI时的第一选择。

二、LVGL主要特性
     强大的UI组件,如按钮,图表,列表,滑块,图像等。
高级图形动画,抗锯齿,不透明度,平滑滚动
各种输入设备,如触摸板、鼠标、键盘、编码器等
多语言支持与UTF-8编码
多显示器支持,即使用更多的TFT,单色显示器同时
完全可定制的图形元素与css类样式
硬件独立与任何微控制器或显示器使用
可扩展,使用少量内存(64kb Flash, 16kb RAM)
支持操作系统、外部内存和GPU,但不是必需的
单帧缓冲操作,甚至与高级图形效果
用C编写的最大兼容性(c++兼容)
模拟器在没有嵌入式硬件的PC上开始嵌入式GUI设计
绑定到MicroPython
教程,例子,快速GUI设计的主题
文档可以在线和PDF格式获取
MIT许可下的免费和开源

三.运行硬件要求
配置要求
基本上,每个能够驱动显示器的现代控制器都适合运行 LVGL。最低要求是:
16、32 或64 位微控制器或处理器
建议使用 16MHz 时钟速度
闪存/ROM:> 64 kB 用于非常重要的组件 (> 建议使用 180 kB)
RAM:
静态 RAM 使用量:0~2 kB,取决于使用的功能和对象类型
堆: >2kB (> 建议使用 8 kB)
动态数据(堆):> 2 KB (> 如果使用多个对象,建议使用 16 kB). 在 lv_conf.h 文件中配置 LV_MEM_SIZE 生效。
显示缓冲区:>“水平分辨率”像素(推荐> 10 × 10ד水平分辨率”)
MCU 或外部显示控制器中的一个帧缓冲器
C99 或更新的编译器

四、移植适配预编译

LVGL 是由三个工程组成的,分别是核心库,驱动库,演示应用程序库。
1.从github上拉取最新lvgl 核心库源码
2.png
2.从github上拉取最新驱动库源码
3.png
3.从github上拉取演示例子源码
4.png
2.查看工程代码结构
5.png
3.重新整理工程目录
重新整理工程目录,把三个工程都放到src子目录下,形成一个新的完整的工程
6.png
4. 编写项目编译配置脚本
编写总工程的CMake脚本,内容如下:
7.png
5.编写各个子模块编译配置脚本
进入src目录,编写项目cmakefile文件,内容如下
8.png
lvgl子模块的cmake脚本
9.png
lv_drivers子模块的cmake脚本
10.png
lv_demos子模块的cmake脚本
11.png
6. 初始化软件配置文件
把 lvgl/lv_conf_template.h模板复制到上层目录,并且改名lv_conf.h
把 lv_drivers/lv_drv_conf_template.h模板复制到上层目录,并且改名lv_drv_conf.h
把lv_demos/ lv_ex_conf_template.h 模板复制到上层目录,并且改名 lv_ex_conf.h
这两个文件是LVGL移植的头文件,所有与移植有关的参数都在这两个文件里定义。
7.修改模型的头文件里的配置
修改lv_conf.h里如下的配置,主要是与屏幕有关,屏幕大小,屏幕DPI,图像内存分配有关的参数
12.png
修改lv_drv_conf.h文件,配置屏幕显示使用的设备和触摸屏输入使用的设备参数:
13.png
修改lv_ex_conf.h文件,配置打开哪个演示程序,为防止冲突,一次最好打开一个,变化设置设置轮番测试。
14.png
8.添加一些外部的代码
添加 main.cpp ,用于启动一个LVGL例子,可以从lvgl/example里复制一个例程出来。
  1. #include "lvgl.h"
  2. #include
  3. #include "lv_port_disp.h"
  4. #include "lv_port_indev.h"
  5. #include "lv_demo_widgets.h"
  6. #include "lv_demo_music.h"
  7. #include "lv_demos/lv_examples.h"

  8. void lvgl_first_demo_start(void);

  9. int main(void)
  10. {                       
  11.         lv_init(); //lvgl 系统初始化
  12.         lv_port_disp_init(); //lvgl 显示接口初始化,放在 lv_init()的后面
  13.         lv_port_indev_init(); //lvgl 输入接口初始化,放在 lv_init()的后面

  14.         //lvgl_first_demo_start(); //打开这个注释就是一个画button的简单demo 注意注释掉下面的lv_demo_widgets
  15.         lv_demo_widgets();
  16.         //lv_demo_music();
  17.         //lv_demo_benchmark();
  18.         printf("start demo n");
  19.         while(1)
  20.         {
  21.                 lv_task_handler();
  22.         }
  23. }

  24. void tim_lv_tick()
  25. {
  26.         lv_tick_inc(1);//lvgl 的 1ms 心跳
  27. }

  28. static void btn_event_cb(lv_obj_t * btn, lv_event_t event)
  29. {
  30.     if(event == LV_EVENT_CLICKED) {
  31.         static uint8_t cnt = 0;
  32.         cnt++;

  33.         /*Get the first child of the button which is the label and change its text*/
  34.         lv_obj_t * label = lv_obj_get_child(btn, NULL);
  35.         lv_label_set_text_fmt(label, "Button: %d", cnt);
  36.     }
  37.    
  38. }
  39. void lvgl_first_demo_start(void)
  40. {
  41.     lv_obj_t * btn = lv_btn_create(lv_scr_act(), NULL);     /*Add a button the current screen*/
  42.     lv_obj_set_pos(btn, 10, 10);                            /*Set its position*/
  43.     lv_obj_set_size(btn, 120, 50);                          /*Set its size*/
  44.     lv_obj_set_event_cb(btn, btn_event_cb);                 /*Assign a callback to the button*/

  45.     lv_obj_t * label = lv_label_create(btn, NULL);          /*Add a label to the button*/
  46.     lv_label_set_text(label, "Button");                     /*Set the labels text*/


  47.         lv_obj_t * label1 = lv_label_create(lv_scr_act(), NULL);
  48.         lv_label_set_text(label1, "Hello world!");
  49.         lv_obj_align(label1, NULL, LV_ALIGN_CENTER, 0, 0);
  50.         lv_obj_align(btn, label1, LV_ALIGN_OUT_TOP_MID, 0, -10);
  51. }
添加系统时钟的实现,LVGL需要调用。添加sys_tick.c, sys_tick.h
  1. #include "sys_tick.h"
  2. #include

  3. uint32_t custom_tick_get(void)
  4. {
  5.     static uint64_t start_ms = 0;
  6.     if(start_ms == 0) {
  7.         struct timeval tv_start;
  8.         gettimeofday(&tv_start, NULL);
  9.         start_ms = (tv_start.tv_sec * 1000000 + tv_start.tv_usec) / 1000;
  10.     }
  11.     struct timeval tv_now;
  12.     gettimeofday(&tv_now, NULL);
  13.     uint64_t now_ms;
  14.     now_ms = (tv_now.tv_sec * 1000000 + tv_now.tv_usec) / 1000;
  15.     uint32_t time_ms = now_ms - start_ms;
  16.     return time_ms;
  17. }
  1. #ifndef __SYS_TICK__H
  2. #define __SYS_TICK__H

  3. #include
  4. #include
  5. #include
  6. extern uint32_t custom_tick_get(void);
  7. #endif
9.开始进行编译
做完上面的修改和代码添加后,可以进行初步的编译,进入工程根目录,进行cmake配置编译:
mkdirbuild
cdbuild
cmake..
15.png
cmake脚本执行完毕后,会产生makefile文件,然后就可以进行编译,执行
make–j4
16.png
经过检查,目标文件已经编译成功。
五、适配层代码开发
       把上面编译出的目标文件传动到板子里运行时,发现屏幕是黑的,什么都看不到,但是程序没有报出错或者退出。说明LVGL已经基本的运行起来了,只是显示的代码没有生效。
      经过分析代码后发现,LVGL为了适配多种硬件,因此它把显示的驱动代码放在lv_drivers/lv_port_disp.c 里,需要移植者根据硬件来完成这个适配。
      经过研究,只需要做小的开发修改,即可完成适配的代码,主要修改为在输出化时,调用drm的初始化,并且规划好双缓冲的屏显方式,并且分配好显存空间,分别修改 lv_port_disp_init、disp_init、disp_flush这三个函数即可。
修改后的代码如下:

  1. /**
  2. * [url=home.php?mod=space&uid=1455510]@file[/url] lv_port_disp_templ.c
  3. *
  4. */

  5. /*Copy this file as "lv_port_disp.c" and set this value to "1" to enable content*/
  6. #if 1

  7. /*********************
  8. *      INCLUDES
  9. *********************/
  10. #include "lv_port_disp.h"
  11. #include "display/drm.h"
  12. /*********************
  13. *      DEFINES
  14. *********************/

  15. /**********************
  16. *      TYPEDEFS
  17. **********************/

  18. /**********************
  19. *  STATIC PROTOTYPES
  20. **********************/
  21. static void disp_init(void);

  22. static void disp_flush(lv_disp_drv_t * disp_drv, const lv_area_t * area, lv_color_t * color_p);

  23. #if LV_USE_GPU
  24. static void gpu_blend(lv_disp_drv_t * disp_drv, lv_color_t * dest, const lv_color_t * src, uint32_t length, lv_opa_t opa);
  25. static void gpu_fill(lv_disp_drv_t * disp_drv, lv_color_t * dest_buf, lv_coord_t dest_width,
  26.         const lv_area_t * fill_area, lv_color_t color);
  27. #endif

  28. /**********************
  29. *  STATIC VARIABLES
  30. **********************/

  31. /**********************
  32. *      MACROS
  33. **********************/

  34. /**********************
  35. *   GLOBAL FUNCTIONS
  36. **********************/

  37. void lv_port_disp_init(void)
  38. {
  39.     /*-------------------------
  40.      * Initialize your display
  41.      * -----------------------*/
  42.     disp_init();

  43.     /*-----------------------------
  44.      * Create a buffer for drawing
  45.      *----------------------------*/

  46.     /* LVGL requires a buffer where it internally draws the widgets.
  47.      * Later this buffer will passed your display drivers `flush_cb` to copy its content to your display.
  48.      * The buffer has to be greater than 1 display row
  49.      *
  50.      * There are three buffering configurations:
  51.      * 1. Create ONE buffer with some rows:
  52.      *      LVGL will draw the display's content here and writes it to your display
  53.      *
  54.      * 2. Create TWO buffer with some rows:
  55.      *      LVGL will draw the display's content to a buffer and writes it your display.
  56.      *      You should use DMA to write the buffer's content to the display.
  57.      *      It will enable LVGL to draw the next part of the screen to the other buffer while
  58.      *      the data is being sent form the first buffer. It makes rendering and flushing parallel.
  59.      *
  60.      * 3. Create TWO screen-sized buffer:
  61.      *      Similar to 2) but the buffer have to be screen sized. When LVGL is ready it will give the
  62.      *      whole frame to display. This way you only need to change the frame buffer's address instead of
  63.      *      copying the pixels.
  64.      * */
  65. #if 0
  66.     /* Example for 1) */
  67.     static lv_disp_buf_t draw_buf_dsc_1;
  68.     static lv_color_t draw_buf_1[LV_HOR_RES_MAX * 10];                          /*A buffer for 10 rows*/
  69.     lv_disp_buf_init(&draw_buf_dsc_1, draw_buf_1, NULL, LV_HOR_RES_MAX * 10);   /*Initialize the display buffer*/

  70.     /* Example for 2) */
  71.     static lv_disp_buf_t draw_buf_dsc_2;
  72.     static lv_color_t draw_buf_2_1[LV_HOR_RES_MAX * 10];                        /*A buffer for 10 rows*/
  73.     static lv_color_t draw_buf_2_2[LV_HOR_RES_MAX * 10];                        /*An other buffer for 10 rows*/
  74.     lv_disp_buf_init(&draw_buf_dsc_2, draw_buf_2_1, draw_buf_2_2, LV_HOR_RES_MAX * 10);   /*Initialize the display buffer*/
  75. #endif
  76.     /* Example for 3) */
  77.     static lv_disp_buf_t draw_buf_dsc_3;
  78.     static lv_color_t draw_buf_3_1[LV_HOR_RES_MAX * LV_VER_RES_MAX];            /*A screen sized buffer*/
  79.     static lv_color_t draw_buf_3_2[LV_HOR_RES_MAX * LV_VER_RES_MAX];            /*An other screen sized buffer*/
  80.     lv_disp_buf_init(&draw_buf_dsc_3, draw_buf_3_1, draw_buf_3_2, LV_HOR_RES_MAX * LV_VER_RES_MAX);   /*Initialize the display buffer*/

  81.     /*-----------------------------------
  82.      * Register the display in LVGL
  83.      *----------------------------------*/

  84.     lv_disp_drv_t disp_drv;                         /*Descriptor of a display driver*/
  85.     lv_disp_drv_init(&disp_drv);                    /*Basic initialization*/

  86.     /*Set up the functions to access to your display*/
  87.     lv_coord_t w=0,h=0;
  88.     uint32_t d=0;
  89.     drm_get_sizes(&w,&h,&d);
  90.     //LV_LOG_INFO("drm_get_sizes %d x %d , dpi %d n", w, h, d );
  91.     /*Set the resolution of the display*/
  92.     disp_drv.hor_res = 1280;
  93.     disp_drv.ver_res = 720;
  94.                
  95.     /*Used to copy the buffer's content to the display*/
  96.     disp_drv.flush_cb = disp_flush;

  97.     /*Set a display buffer*/
  98.     disp_drv.buffer = &draw_buf_dsc_3;

  99. #if LV_USE_GPU
  100.     /*Optionally add functions to access the GPU. (Only in buffered mode, LV_VDB_SIZE != 0)*/

  101.     /*Blend two color array using opacity*/
  102.     disp_drv.gpu_blend_cb = gpu_blend;

  103.     /*Fill a memory array with a color*/
  104.     disp_drv.gpu_fill_cb = gpu_fill;
  105. #endif

  106.     /*Finally register the driver*/
  107.     lv_disp_t *disp=lv_disp_drv_register(&disp_drv);
  108.     lv_disp_set_default(disp);
  109.    // lv_disp_set_rotation(disp, LV_DISP_ROT_90);
  110. }

  111. /**********************
  112. *   STATIC FUNCTIONS
  113. **********************/

  114. /* Initialize your display and the required peripherals. */
  115. static void disp_init(void)
  116. {
  117.           LV_LOG_INFO("disp_init....");
  118.     /*You code here*/
  119.     drm_init();
  120. }

  121. /* Flush the content of the internal buffer the specific area on the display
  122. * You can use DMA or any hardware acceleration to do this operation in the background but
  123. * 'lv_disp_flush_ready()' has to be called when finished. */
  124. static void disp_flush(lv_disp_drv_t * disp_drv, const lv_area_t * area)
  125. {
  126.     /*The most simple case (but also the slowest) to put all pixels to the screen one-by-one*/
  127. #if 0
  128.     int32_t x;
  129.     int32_t y;
  130.     for(y = area->y1; y <= area->y2; y++) {
  131.         for(x = area->x1; x <= area->x2; x++) {
  132.             /* Put a pixel to the display. For example: */
  133.             /* put_px(x, y, *color_p)*/
  134.            // color_p++;
  135.         }
  136.     }
  137. #endif
  138.     //lv_disp_drv_t * drv, const lv_area_t * area, lv_color_t * color_p);
  139.     drm_flush(disp_drv , area , color_p);
  140.     /* IMPORTANT!!!
  141.      * Inform the graphics library that you are ready with the flushing*/
  142.    // LV_LOG_INFO("....disp_flush....");
  143.     lv_disp_flush_ready(disp_drv);
  144. }

  145. /*OPTIONAL: GPU INTERFACE*/
  146. #if LV_USE_GPU

  147. /* If your MCU has hardware accelerator (GPU) then you can use it to blend to memories using opacity
  148. * It can be used only in buffered mode (LV_VDB_SIZE != 0 in lv_conf.h)*/
  149. static void gpu_blend(lv_disp_drv_t * disp_drv, lv_color_t * dest, const lv_color_t * src, uint32_t length, lv_opa_t opa)
  150. {
  151.     /*It's an example code which should be done by your GPU*/
  152.     uint32_t i;
  153.     for(i = 0; i < length; i++) {
  154.         dest[i] = lv_color_mix(dest[i], src[i], opa);
  155.     }
  156.      LV_LOG_INFO("....gpu_blend....");
  157. }

  158. /* If your MCU has hardware accelerator (GPU) then you can use it to fill a memory with a color
  159. * It can be used only in buffered mode (LV_VDB_SIZE != 0 in lv_conf.h)*/
  160. static void gpu_fill(lv_disp_drv_t * disp_drv, lv_color_t * dest_buf, lv_coord_t dest_width,
  161.                     const lv_area_t * fill_area, lv_color_t color)
  162. {
  163.     /*It's an example code which should be done by your GPU*/
  164.     int32_t x, y;
  165.     dest_buf += dest_width * fill_area->y1; /*Go to the first line*/

  166.     for(y = fill_area->y1; y <= fill_area->y2; y++) {
  167.         for(x = fill_area->x1; x <= fill_area->x2; x++) {
  168.             dest_buf[x] = color;
  169.         }
  170.         dest_buf+=dest_width;    /*Go to the next line*/
  171.     }
  172. }

  173. #endif  /*LV_USE_GPU*/

  174. #else /* Enable this file at the top */

  175. /* This dummy typedef exists purely to silence -Wpedantic. */
  176. typedef int keep_pedantic_happy;
  177. #endif

同样修改触摸屏的适配代码lv_port_indev.c,主要修改
touchpad_init,touchpad_read,完成触摸屏事件转换为图形系统的坐标,实现代码如下:
  1. /**
  2. * @file lv_port_indev_templ.c
  3. *
  4. */

  5. /*Copy this file as "lv_port_indev.c" and set this value to "1" to enable content*/
  6. #if 1

  7. /*********************
  8. *      INCLUDES
  9. *********************/
  10. #include "lv_port_indev.h"
  11. #include "../lv_drv_conf.h" //添加依赖的头文件
  12. #include "../tslib.h" //添加tslib库头文件
  13. #include
  14. #include
  15. #include
  16. #include
  17. #include
  18. #include
  19. #include //如果你用了epoll 或者select可添加此头文件
  20. #include
  21. #include
  22. #include
  23. #include //如果你是自己处理去抖动那直接读取触摸屏事件可以添加此头文件
  24. #include

  25. #include "indev/evdev.h"
  26. /*********************
  27. *      DEFINES
  28. *********************/

  29. /**********************
  30. *      TYPEDEFS
  31. **********************/

  32. /**********************
  33. *  STATIC PROTOTYPES
  34. **********************/

  35. static void touchpad_init(void);
  36. static bool touchpad_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data);
  37. static bool touchpad_is_pressed(void);
  38. static void touchpad_get_xy(lv_coord_t * x, lv_coord_t * y);

  39. static void mouse_init(void);
  40. static bool mouse_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data);
  41. static bool mouse_is_pressed(void);
  42. static void mouse_get_xy(lv_coord_t * x, lv_coord_t * y);

  43. static void keypad_init(void);
  44. static bool keypad_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data);
  45. static uint32_t keypad_get_key(void);

  46. static void encoder_init(void);
  47. static bool encoder_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data);
  48. //static void encoder_handler(void);

  49. static void button_init(void);
  50. static bool button_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data);
  51. static int8_t button_get_pressed_id(void);
  52. static bool button_is_pressed(uint8_t id);

  53. /**********************
  54. *  STATIC VARIABLES
  55. **********************/
  56. lv_indev_t * indev_touchpad;
  57. lv_indev_t * indev_mouse;
  58. lv_indev_t * indev_keypad;
  59. lv_indev_t * indev_encoder;
  60. lv_indev_t * indev_button;

  61. static int32_t encoder_diff;
  62. static lv_indev_state_t encoder_state;

  63. /**********************
  64. *      MACROS
  65. **********************/

  66. /**********************
  67. *   GLOBAL FUNCTIONS
  68. **********************/

  69. void lv_port_indev_init(void)
  70. {
  71.     /* Here you will find example implementation of input devices supported by LittelvGL:
  72.      *  - Touchpad
  73.      *  - Mouse (with cursor support)
  74.      *  - Keypad (supports GUI usage only with key)
  75.      *  - Encoder (supports GUI usage only with: left, right, push)
  76.      *  - Button (external buttons to press points on the screen)
  77.      *
  78.      *  The `..._read()` function are only examples.
  79.      *  You should shape them according to your hardware
  80.      */

  81.     lv_indev_drv_t indev_drv;

  82.     /*------------------
  83.      * Touchpad
  84.      * -----------------*/

  85.     /*Initialize your touchpad if you have*/
  86.     touchpad_init();

  87.     /*Register a touchpad input device*/
  88.     lv_indev_drv_init(&indev_drv);
  89.     indev_drv.type = LV_INDEV_TYPE_POINTER;
  90.     indev_drv.read_cb = touchpad_read;
  91.     indev_touchpad = lv_indev_drv_register(&indev_drv);

  92.     /*------------------
  93.      * Mouse
  94.      * -----------------*/

  95.     /*Initialize your touchpad if you have*/
  96.     mouse_init();

  97.     /*Register a mouse input device*/
  98.     lv_indev_drv_init(&indev_drv);
  99.     indev_drv.type = LV_INDEV_TYPE_POINTER;
  100.     indev_drv.read_cb = mouse_read;
  101.     indev_mouse = lv_indev_drv_register(&indev_drv);

  102.     /*Set cursor. For simplicity set a HOME symbol now.*/
  103.     lv_obj_t * mouse_cursor = lv_img_create(lv_disp_get_scr_act(NULL), NULL);
  104.     lv_img_set_src(mouse_cursor, (const void *)LV_SYMBOL_HOME);
  105.     lv_indev_set_cursor(indev_mouse, mouse_cursor);

  106.     /*------------------
  107.      * Keypad
  108.      * -----------------*/

  109.     /*Initialize your keypad or keyboard if you have*/
  110.     keypad_init();

  111.     /*Register a keypad input device*/
  112.     lv_indev_drv_init(&indev_drv);
  113.     indev_drv.type = LV_INDEV_TYPE_KEYPAD;
  114.     indev_drv.read_cb = keypad_read;
  115.     indev_keypad = lv_indev_drv_register(&indev_drv);

  116.     /* Later you should create group(s) with `lv_group_t * group = lv_group_create()`,
  117.      * add objects to the group with `lv_group_add_obj(group, obj)`
  118.      * and assign this input device to group to navigate in it:
  119.      * `lv_indev_set_group(indev_keypad, group);` */

  120.     /*------------------
  121.      * Encoder
  122.      * -----------------*/

  123.     /*Initialize your encoder if you have*/
  124.     encoder_init();

  125.     /*Register a encoder input device*/
  126.     lv_indev_drv_init(&indev_drv);
  127.     indev_drv.type = LV_INDEV_TYPE_ENCODER;
  128.     indev_drv.read_cb = encoder_read;
  129.     indev_encoder = lv_indev_drv_register(&indev_drv);

  130.     /* Later you should create group(s) with `lv_group_t * group = lv_group_create()`,
  131.      * add objects to the group with `lv_group_add_obj(group, obj)`
  132.      * and assign this input device to group to navigate in it:
  133.      * `lv_indev_set_group(indev_encoder, group);` */

  134.     /*------------------
  135.      * Button
  136.      * -----------------*/

  137.     /*Initialize your button if you have*/
  138.     button_init();

  139.     /*Register a button input device*/
  140.     lv_indev_drv_init(&indev_drv);
  141.     indev_drv.type = LV_INDEV_TYPE_BUTTON;
  142.     indev_drv.read_cb = button_read;
  143.     indev_button = lv_indev_drv_register(&indev_drv);

  144.     /*Assign buttons to points on the screen*/
  145.     static const lv_point_t btn_points[2] = {
  146.             {10, 10},   /*Button 0 -> x:10; y:10*/
  147.             {40, 100},  /*Button 1 -> x:40; y:100*/
  148.     };
  149.     lv_indev_set_button_points(indev_button, btn_points);
  150. }

  151. /**********************
  152. *   STATIC FUNCTIONS
  153. **********************/

  154. /*------------------
  155. * Touchpad
  156. * -----------------*/

  157. /*Initialize your touchpad*/
  158. static void touchpad_init(void)
  159. {
  160.     /*Your code comes here*/
  161.     evdev_init();
  162. }

  163. /* Will be called by the library to read the touchpad */
  164. static bool touchpad_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data)
  165. {
  166.           static lv_coord_t last_a = 0;
  167.     static lv_coord_t last_b = 0;
  168.    
  169.     static lv_coord_t last_x = 0;
  170.     static lv_coord_t last_y = 0;
  171.                 //static lv_coord_t tmp;
  172.     /*Save the pressed coordinates and the state*/
  173.     if(touchpad_is_pressed()) {
  174.               printf("is_pressed !n");
  175.         touchpad_get_xy(&last_x, &last_y);
  176.         data->state = LV_INDEV_STATE_PR;
  177.     } else {
  178.         data->state = LV_INDEV_STATE_REL;
  179.     }

  180.     /*Set the last pressed coordinates*/
  181.     data->point.x = last_x;
  182.     data->point.y = last_y;
  183.    
  184.     evdev_read(indev_drv,data);
  185.    
  186.     if(data->point.x != last_a || data->point.y != last_b)
  187.     {
  188.                     last_a = data->point.x; last_b = data->point.y;
  189.               //printf("evdev x,y=%d,%dn", data->point.x, data->point.y);
  190.     }
  191.   
  192.    // tmp = data->point.x;
  193.     //data->point.x = data->point.y ;
  194.     //data->point.y = 719-tmp;
  195.     /*Return `false` because we are not buffering and no more data to read*/
  196.     return false;
  197. }

  198. /*Return true is the touchpad is pressed*/
  199. static bool touchpad_is_pressed(void)
  200. {
  201.     /*Your code comes here*/

  202.     return false;
  203. }

  204. /*Get the x and y coordinates if the touchpad is pressed*/
  205. static void touchpad_get_xy(lv_coord_t * x, lv_coord_t * y)
  206. {
  207.     /*Your code comes here*/

  208.     (*x) = 0;
  209.     (*y) = 0;
  210. }

  211. /*------------------
  212. * Mouse
  213. * -----------------*/

  214. /* Initialize your mouse */
  215. static void mouse_init(void)
  216. {
  217.     /*Your code comes here*/
  218. }

  219. /* Will be called by the library to read the mouse */
  220. static bool mouse_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data)
  221. {
  222.     /*Get the current x and y coordinates*/
  223.     mouse_get_xy(&data->point.x, &data->point.y);

  224.     /*Get whether the mouse button is pressed or released*/
  225.     if(mouse_is_pressed()) {
  226.         data->state = LV_INDEV_STATE_PR;
  227.     } else {
  228.         data->state = LV_INDEV_STATE_REL;
  229.     }

  230.     /*Return `false` because we are not buffering and no more data to read*/
  231.     return false;
  232. }

  233. /*Return true is the mouse button is pressed*/
  234. static bool mouse_is_pressed(void)
  235. {
  236.     /*Your code comes here*/

  237.     return false;
  238. }

  239. /*Get the x and y coordinates if the mouse is pressed*/
  240. static void mouse_get_xy(lv_coord_t * x, lv_coord_t * y)
  241. {
  242.     /*Your code comes here*/

  243.     (*x) = 0;
  244.     (*y) = 0;
  245. }

  246. /*------------------
  247. * Keypad
  248. * -----------------*/

  249. /* Initialize your keypad */
  250. static void keypad_init(void)
  251. {
  252.     /*Your code comes here*/
  253. }

  254. /* Will be called by the library to read the mouse */
  255. static bool keypad_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data)
  256. {
  257.     static uint32_t last_key = 0;

  258.     /*Get the current x and y coordinates*/
  259.     mouse_get_xy(&data->point.x, &data->point.y);

  260.     /*Get whether the a key is pressed and save the pressed key*/
  261.     uint32_t act_key = keypad_get_key();
  262.     if(act_key != 0) {
  263.         data->state = LV_INDEV_STATE_PR;

  264.         /*Translate the keys to LVGL control characters according to your key definitions*/
  265.         switch(act_key) {
  266.         case 1:
  267.             act_key = LV_KEY_NEXT;
  268.             break;
  269.         case 2:
  270.             act_key = LV_KEY_PREV;
  271.             break;
  272.         case 3:
  273.             act_key = LV_KEY_LEFT;
  274.             break;
  275.         case 4:
  276.             act_key = LV_KEY_RIGHT;
  277.             break;
  278.         case 5:
  279.             act_key = LV_KEY_ENTER;
  280.             break;
  281.         }

  282.         last_key = act_key;
  283.     } else {
  284.         data->state = LV_INDEV_STATE_REL;
  285.     }

  286.     data->key = last_key;

  287.     /*Return `false` because we are not buffering and no more data to read*/
  288.     return false;
  289. }

  290. /*Get the currently being pressed key.  0 if no key is pressed*/
  291. static uint32_t keypad_get_key(void)
  292. {
  293.     /*Your code comes here*/

  294.     return 0;
  295. }

  296. /*------------------
  297. * Encoder
  298. * -----------------*/

  299. /* Initialize your keypad */
  300. static void encoder_init(void)
  301. {
  302.     /*Your code comes here*/
  303. }

  304. /* Will be called by the library to read the encoder */
  305. static bool encoder_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data)
  306. {

  307.     data->enc_diff = encoder_diff;
  308.     data->state = encoder_state;

  309.     /*Return `false` because we are not buffering and no more data to read*/
  310.     return false;
  311. }

  312. /*Call this function in an interrupt to process encoder events (turn, press)*/
  313. //static void encoder_handler(void)
  314. //{
  315.     /*Your code comes here*/
  316. //    encoder_diff += 0;
  317. //    encoder_state = LV_INDEV_STATE_REL;
  318. //}

  319. /*------------------
  320. * Button
  321. * -----------------*/

  322. /* Initialize your buttons */
  323. static void button_init(void)
  324. {
  325.     /*Your code comes here*/
  326. }

  327. /* Will be called by the library to read the button */
  328. static bool button_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data)
  329. {

  330.     static uint8_t last_btn = 0;

  331.     /*Get the pressed button's ID*/
  332.     int8_t btn_act = button_get_pressed_id();

  333.     if(btn_act >= 0) {
  334.         data->state = LV_INDEV_STATE_PR;
  335.         last_btn = btn_act;
  336.     } else {
  337.         data->state = LV_INDEV_STATE_REL;
  338.     }

  339.     /*Save the last pressed button's ID*/
  340.     data->btn_id = last_btn;

  341.     /*Return `false` because we are not buffering and no more data to read*/
  342.     return false;
  343. }

  344. /*Get ID  (0, 1, 2 ..) of the pressed button*/
  345. static int8_t button_get_pressed_id(void)
  346. {
  347.     uint8_t i;

  348.     /*Check to buttons see which is being pressed (assume there are 2 buttons)*/
  349.     for(i = 0; i < 2; i++) {
  350.         /*Return the pressed button's ID*/
  351.         if(button_is_pressed(i)) {
  352.             return i;
  353.         }
  354.     }

  355.     /*No button pressed*/
  356.     return -1;
  357. }

  358. /*Test if `id` button is pressed or not*/
  359. static bool button_is_pressed(uint8_t id)
  360. {

  361.     /*Your code comes here*/

  362.     return false;
  363. }

  364. #else /* Enable this file at the top */

  365. /* This dummy typedef exists purely to silence -Wpedantic. */
  366. typedef int keep_pedantic_happy;
  367. #endif

把修改完的代码合并到工程,然后再执行编译,可以得到完成适配的开发板上的可执行文件。
六、板上测试运行把文件传到目标板上运行,即可看道LVGL的界面了,这是一个lv_demo_widgets 的演示,界面显示效果如下:
17.png
18.png
同样可以修改demo的定义,跑起一个lv_demo_benchmark来全面测试该硬件运行LVGL的效果,后面附带一个视频,即为运行该GUI的效果,可见实测能跑到 22fps,运行非常流程,响应也很灵敏。界面非常漂亮。
19.png

七、屏幕旋转显示
       在开始的测试中,显示是竖屏的,因为这个开发板系统底层显示驱动模型是 720X1280的显示。跟一些LVGL演示的界面不和谐。
      因此需要把显示进行旋转,开始尝试使用LVGLdisp自带的旋转函数 lv_disp_set_rotation(disp, LV_DISP_ROT_90);发现界面虽然旋转了90度,是横向显示,但是屏幕输出仍然是纵向,造成界面只显示坐厕,屏幕下方是黑的。显然这个旋转是界面的方向,不是显示的方向。
    显示的旋转应需要在 DRM的驱动里去修改屏幕的输出的方向,经过一番研究,没找找到DRM直接修改显示方向的方法,因时间有限,于是使用了一个简单粗暴的方法,即在刷屏时,把刷屏的数据进行重新调整顺序,达到“旋转”的目标,代码实现在drm.c里,如下:
20.png
同样在显示旋转后,触摸屏的坐标也需要“旋转”,除了打开上面配置的交换x,y坐标后,测试时发现,虽然x,y坐标交换了,但是y坐标的方向错了,应该是左上角为原点,向下为正,但实际是左下角为原点,向上为正了,导致屏幕上所有控件无法或得正确的触摸消息。
修改方法很简单,修改lv_drivers/indev/evdev.c,把y坐标掉个头。代码如下:
21.png
坐标修改下面的代码是对坐标加以保护,防止触摸到边界时,出现负的坐标,而导致系统异常。经过上面修改后,再在板上测试,所有显示和触摸都正确了,界面也显示了横屏的效果,但是因为DRM旋转的方法比较低效,导致刷新帧率明显降低,由GUI的30fps,降低到20fps左右。
同样,对屏幕上的UI显示的大小,可以通过修改lv_conf.h里的DIP来调整,计算方法很简单。
比如这个屏是6英寸,对720x1280这个分辨率是约为1468像素,即每英寸 1468/6 = 245, 即可得标准的DIP ,设置为245,显示最佳。一下是几个界面拍照图:
22.png
23.png
24.png

八、LVGL移植总结
        经过在EASY-EAI-Nano(RV1126)开发板成功移植LVGL图形库,进一步了解该开发板的性能,同时也了解LVGL软件的一些特点,工程代码结构简洁,结构合理,容易理解。各个地方的注释也非常丰富,模块结构划分清晰,移植适配起来非常方便。
        同时也测试得LVGl在该开发板上运行非常流畅,由于是纯C实现的界面,板上执行效率非常高。并且具有良好的界面的适配性,不同尺寸的屏幕的LVGL图形应用非常方便的移植。而且LVGL界面提供大量可直接使用的组件,这些组件也很美观。之后就可以方便把大量LVGL的UI应用移植到该平台上了。

LVGL移植横屏测试

回帖(1)

李加宁

2023-5-29 13:57:17
您好,请问移植后的lvgl工程方便分享下吗
举报

更多回帖

发帖
×
20
完善资料,
赚取积分