Hi @vipuljain91
Please make sure that your display matches with one of the two supported LCDs.
First recommendation is:
Open the display_support.h , located in the board folder of the host project and ensure that your LCD panel is selected.
Setup for RK043FN66HS display
|
#define DEMO_PANEL_RK043FN02H 0 /* RK043FN02H-CT */
#define DEMO_PANEL_RK043FN66HS 1 /* RK043FN66HS-CTG */
/* @TEST_ANCHOR */
#ifndef DEMO_PANEL
#define DEMO_PANEL DEMO_PANEL_RK043FN66HS
#endif
|
Setup for RK043FN02H display
|
#define DEMO_PANEL_RK043FN02H 1 /* RK043FN02H-CT */
#define DEMO_PANEL_RK043FN66HS 0 /* RK043FN66HS-CTG */
/* @TEST_ANCHOR */
#ifndef DEMO_PANEL
#define DEMO_PANEL DEMO_PANEL_RK043FN02H
#endif
|
Second recommendation is: If using the RK043FN66HS display, try to use the attached file driver. It is basically the same touch panel driver from the SDK , just we added some extra delays.
If this does not works, let me know.
All the best,
Diego