-
Notifications
You must be signed in to change notification settings - Fork 2k
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
drivers/disp_dev: use struct to store display area coordinates #17921
Merged
aabadie
merged 5 commits into
RIOT-OS:master
from
aabadie:pr/drivers/disp_dev_coordinates
Apr 19, 2022
Merged
drivers/disp_dev: use struct to store display area coordinates #17921
aabadie
merged 5 commits into
RIOT-OS:master
from
aabadie:pr/drivers/disp_dev_coordinates
Apr 19, 2022
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7a2ca15
to
ea2c571
Compare
ea2c571
to
a16449f
Compare
fjmolinas
approved these changes
Apr 19, 2022
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.
ACK
Thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Area: cpu
Area: CPU/MCU ports
Area: drivers
Area: Device drivers
Area: pkg
Area: External package ports
Area: tests
Area: tests and testing framework
CI: ready for build
If set, CI server will compile all applications for all available boards for the labeled PR
Platform: ARM
Platform: This PR/issue effects ARM-based platforms
Process: API change
Integration Process: PR contains or issue proposes an API change. Should be handled with care.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Contribution description
This PR is a take over of #14051 to only update the
disp_dev
API. Since now there are new modules that implements an adapter to this API (STM32 LTDC periph, LCD common drivers) and several users (lvgl packages, tests/disp_dev and tests/pkg_qr-code-generator).This PR also contains small improvements compared to #14051:
disp_dev_area_t
to better reflects what it is aboutCompared to master this PR increases the ROM size by 16B (checked by compiling
tests/disp_dev
for the adafruit-clue board).I guess that this is acceptable.
Testing procedure
tests/disp_dev
,tests/pkg_lvgl
andtests/pkg_qr-code-generator
are still workingIssues/PRs references
Closes #14051, depends on #16176