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
Hi!
It seems out_waiting is named wrong in dummyserial, as it is "in_waiting" in pyserial:
>>> s = serial.Serial('/dev/ttyUSB1', 115200, timeout=15) >>> s.write(b'AT\r') 3 >>> s.inWaiting() 6 >>> s.read(s.inWaiting()) b'\r\nOK\r\n'
The text was updated successfully, but these errors were encountered:
Since version 3.0, pyserial implements in_waiting and out_waiting. Package dummyserial only implements out_waiting.
in_waiting
out_waiting
So, it is not named incorrectly, but in_waiting is missing.
Sorry, something went wrong.
No branches or pull requests
Hi!
It seems out_waiting is named wrong in dummyserial,
as it is "in_waiting" in pyserial:
The text was updated successfully, but these errors were encountered: