-
Notifications
You must be signed in to change notification settings - Fork 1.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
Bugfix/fix esp spi slave receive data #14420
Bugfix/fix esp spi slave receive data #14420
Conversation
[Experimental Bot, please feedback here] Fill In The Commit Message: This PR contains a Commit with an Empty Commit Message. Please fill in the Commit Message with the PR Summary. The provided PR information seems to meet most of the NuttX requirements. However, it would benefit from slight improvements for better clarity and completeness. Strengths:
Areas for Improvement:
Example of Improved Impact Section:
By making these improvements, the PR will be more comprehensive, informative, and easier for reviewers to assess. |
1446ed7
to
f20b765
Compare
f20b765
to
1e2e475
Compare
Note: Please adhere to Contributing Guidelines.
Summary
This PR fix know issue in esp32c6 spi slave driver. The issue was presented here: #13238
Also, this PR add spi slave configuration to esp32c6 devkitm
Impact
Now esp32c6 can get data received from spi master properly.
Testing
2 esp32c6 devikit m were used, one as master and other as slave. In image below you will see tests. In the right side master sends data to slave and in the left side slave, running a simple application, can read exactly data sent by master.
Tnx @Donny9 for improve and fix issues in top half layer.