-
-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Finish WindowsBinding reading #994
Comments
This looks like it will require a Read method to be added to serialport.cpp. Is that correct? |
yep |
Should reads be queueable? |
They don't need to be, we're guaranteeing not to call it again until the On Fri, Nov 11, 2016, 6:31 PM Mũnyĩrĩ Kamau notifications@github.com
|
How were you thinking of handling data events? (since AfterOpenSuccess/EIO_WatchPort have been removed). |
When someone wants data they ask for it, if no data is available read won't return until there is data. The stream mechanics take care of continuously asking for data in streaming mode. No events needed. |
This is already done thanks to @munyirik =) |
Follow up from #906 which removed the read loop from the windows binding but didn't yet add in a new
read()
function that worked.The text was updated successfully, but these errors were encountered: