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
In bus.toit the run function has a while true:. It should probably be while not Task.current.canceled:. (see #6 (comment))
bus.toit
run
while true:
while not Task.current.canceled:
Currently we avoid using Task.current as this only works on newer versions of Toit, so I prefer not to make this change now.
Task.current
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In
bus.toit
therun
function has awhile true:
.It should probably be
while not Task.current.canceled:
. (see #6 (comment))Currently we avoid using
Task.current
as this only works on newer versions of Toit, so I prefer not to make this change now.The text was updated successfully, but these errors were encountered: