Conversation
7706a53 to
f93f870
Compare
Contributor
Author
|
I feel like #90 is the fix i've been looking for, but this is probably a feature we should consider anyways |
call this regularly and more frequently than queueing i2c requests in order to process requests & deadlines correctly also fixes potential bug referred to in 6313be
for some reason polling right when pushing a request to the interface will stall communication, always going into the error handler. calling `poll` regularly in its own 'task' instead seems to fix this particular bug. this probably only fixes the symptoms instead of the actual reason behind it, but works for now. more investigation will be necessary to find the underlying reason and find a proper fix.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This patchset introduces a public
pollmethod on theI2Cinterface that must be called regularly to check for stalled communication and initialize transfers.do something like