-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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: gpio: gpio_pca953x: Adding input latch and interrupt mask #64509
drivers: gpio: gpio_pca953x: Adding input latch and interrupt mask #64509
Conversation
Hello @VuDangBP, and thank you very much for your first pull request to the Zephyr project! |
a22ceca
to
553e8b6
Compare
553e8b6
to
1dbdb91
Compare
1dbdb91
to
eea60a8
Compare
CC @rerickson1 long memory but this doesn't look valid for the BL5340 DVK port expander |
eea60a8
to
f9cd640
Compare
@nordicjm could you clarify your thinking here? Why wouldn't it work? I will start looking into this as well. Thanks! |
They don't exist in that part: https://www.ti.com/lit/ds/symlink/tca9538.pdf |
Hi @rerickson1, as there is a new commit added to this PR, please review this PR. Thank you very much. |
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.
Spaces missing here.
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.
Please squash all commits.
259f56d
to
62607ad
Compare
62607ad
to
152ebe6
Compare
152ebe6
to
838baf0
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.
looks good, good to remove that empty line if there's another revision
The gpio_pca953x gpio driver doesn't have the input latch and interrupt mask configuration which causes a lack of accessing and using those features on an gpio expander device. Fix it by adding input latch and interrupt mask configurations in this driver. Signed-off-by: Vudang Thaihai <[email protected]>
c291e15
838baf0
to
c291e15
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.
Thanks for your patience :-)
Hi @VuDangBP! To celebrate this milestone and showcase your contribution, we'd love to award you the Zephyr Technical Contributor badge. If you're interested, please claim your badge by filling out this form: Claim Your Zephyr Badge. Thank you for your valuable input, and we look forward to seeing more of your contributions in the future! 🪁 |
The gpio_pca953x gpio driver doesn't have
the input latch and interrupt mask
configuration which causes a lack of accessing
and using those features on an gpio expander
device. Fix it by adding input latch and
interrupt mask configurations in this driver.