-
Notifications
You must be signed in to change notification settings - Fork 6.9k
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
Modules: LVGL: Add Support for Rounder Callback #69410
Modules: LVGL: Add Support for Rounder Callback #69410
Conversation
@danieldegrasse could you also provide your input on this PR? |
bdadebe
to
06c0416
Compare
06c0416
to
a465928
Compare
a465928
to
9699c21
Compare
7513c39
to
9944482
Compare
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.
Needs converting to hwmv2
Hi, it's not clear to me what this scheme is. In fact, I am now unable to boot with any sample code after the introduction of hwmv2. |
f7e2678
9944482
to
f7e2678
Compare
PR has been rebased |
Add support for LVGL rounder callback function. Sometimes, either the underlying display controller and/or the LCD host controller might impose restrictions on frame resolution. For instance, the E1394AA65A display model should impose that either axis of a frame be multiple of 2 pixels or the Renesas LCD controller of the DA1469x SoC, should impose that the stride value, number of bytes between consecutive frame lines, be multiple of 4 bytes. Signed-off-by: Ioannis Karachalios <[email protected]>
f7e2678
to
718ffb1
Compare
@@ -0,0 +1,12 @@ | |||
# DA1469x series Development Kit Pro board configuration | |||
|
|||
# Copyright (c) 2022 Renesas Electronics Corporation |
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.
Nit: did you mean 2024?
Add default LVGL Kconfig for rounder cb. Signed-off-by: Ioannis Karachalios <[email protected]>
718ffb1
to
1631643
Compare
Add support for LVGL frame rounder callback function. Sometimes, either the underlying display controller and/or the LCD host controller might impose restrictions on frames resolution. For instance, the E1394AA65A display model should impose that either axis of a frame be multiple of 2 pixels or the Renesas LCD controller of the DA1469x SoC, should impose that the stride value, number of bytes between consecutive frame lines, be multiple of 4 bytes.