-
Notifications
You must be signed in to change notification settings - Fork 8.1k
drivers: uart_mcux_flexcomm: fix dma rx config #97290
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: uart_mcux_flexcomm: fix dma rx config #97290
Conversation
Hello @remdzi, and thank you very much for your first pull request to the Zephyr project! |
bcb1fc9
to
0370791
Compare
c34da05
to
0370791
Compare
I concur this was a typo bug in my CL and the fix looks correct. |
@remdzi , thanks for your contribution. Please fix the commit message, link to guidelines: |
0370791
to
a768105
Compare
The DMA configurations for TX and RX were mixed-up letting the DMA RX channel not fully configured. This fix correctly configures the DMA RX channel with DMA_ADDR_ADJ_NO_CHANGE. Signed-off-by: Rémy Dziemiaszko <[email protected]>
a768105
to
ab03a90
Compare
Please retry analysis of this Pull-Request directly on SonarQube Cloud |
Hi @remdzi! 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 DMA configurations for TX and RX were mixed-up letting the DMA RX channel not fully configured.
This fix correctly configures the DMA RX channel with DMA_ADDR_ADJ_NO_CHANGE.
Related to issue #97289
Fixes: #97289