-
Notifications
You must be signed in to change notification settings - Fork 81
fix(linux): update LVGL demo performance issue #701
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -166,6 +166,15 @@ | |||||||||
|
|
||||||||||
| #. Launch the demo by typing `/usr/bin/lvglsim` into the UART command prompt. | ||||||||||
|
|
||||||||||
| .. ifconfig:: CONFIG_part_variant in ('AM62LX') | ||||||||||
|
|
||||||||||
| .. note:: | ||||||||||
|
|
||||||||||
| **AM62LX Performance Issue - SDK 11.02.08.02 and 12.00.00.07.04:** | ||||||||||
|
|
||||||||||
| For AM62LX platform in SDK releases 11.02.08.02 and 12.00.00.07.04, the default LVGL application is configured to run on DRM | ||||||||||
|
Check warning on line 175 in source/linux/Demo_User_Guides/TI_LVGL_Demo_User_Guide.rst
|
||||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
| (Direct Rendering Manager) which has resulted in performance issues. To improve performance, the rendering mode | ||||||||||
|
Comment on lines
+175
to
+176
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
| needs to be changed from DRM to FB (framebuffer) rendering. | ||||||||||
|
Check warning on line 177 in source/linux/Demo_User_Guides/TI_LVGL_Demo_User_Guide.rst
|
||||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
|
|
||||||||||
| ********************** | ||||||||||
| Using the TI LVGL Demo | ||||||||||
|
|
||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.