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
As per discussion: https://github.com/orgs/micropython/discussions/12573 rshell appears to hang after 5-20 loops of the following program:
from time import sleep from machine import lightsleep while True: print ('waiting 2 seconds for a CTRL-C') sleep(2) print ('going to lightsleep for 2 seconds') sleep(0.1) lightsleep(2000) print ('woke-up again') sleep(0.1)
lightsleep messing with the USB has been suggested as a possible cause.
The text was updated successfully, but these errors were encountered:
Assuming lightsleep is I/O-driven using USB, 70288d8 might solve your problem now.
lightsleep
Sorry, something went wrong.
No branches or pull requests
As per discussion:
https://github.com/orgs/micropython/discussions/12573
rshell appears to hang after 5-20 loops of the following program:
lightsleep messing with the USB has been suggested as a possible cause.
The text was updated successfully, but these errors were encountered: