V8.01 Where is the definition MY_DISP_HOR_RES/MY_DISP_VER_RES

Important: unclear posts may not receive useful answers.

Before posting

  • Get familiar with Markdown to format and structure your post
  • Be sure to update lvgl from the latest version from the master branch.
  • Read the

Delete this section if you read and applied the mentioned points.

Description

Where is the definition MY_DISP_HOR_RES/MY_DISP_VER_RES? Not found in the lv_conf.h, should I define it myself? I update the lvgl from V6.0.2 to V8.0.1

What MCU/Processor/Board and compiler are you using?

What do you want to achieve?

What have you tried so far?

Code to reproduce

Add the relevant code snippets here.

The code block(s) should be between ```c and ``` tags:

/*You code here*/

Screenshot and/or video

If possible, add screenshots and/or videos about the current state.

The should be sent in the display driver directly. For example:

  static lv_disp_drv_t disp_drv;
  lv_disp_drv_init(&disp_drv);
  disp_drv.draw_buf = &disp_buf1;
  disp_drv.flush_cb = monitor_flush;
  disp_drv.hor_res = 480;
  disp_drv.ver_res = 320;