We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Interrupt driven RMT channels, need access to .is_done so that we don't hang in an interrupt handler.
.is_done
Access to .is_done or information about the channel status
None
The text was updated successfully, but these errors were encountered:
I had a look at SingleShotTxTransaction and is_done can't really be provided on that because it does chunking and generally just a lot for you.
SingleShotTxTransaction
is_done
The long term solution seems to be something along the lines of #1768 but a non-blocking version of it, which will let you do interrupts.
So to summarize this issue is, "Provide a non-blocking version of SingleShotTxTransaction".
Sorry, something went wrong.
No branches or pull requests
Motivations
Interrupt driven RMT channels, need access to
.is_done
so that we don't hang in an interrupt handler.Solution
Access to
.is_done
or information about the channel statusAlternatives
None
The text was updated successfully, but these errors were encountered: