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
I try: lock.acquire(1, 3)
lock.acquire(1, 3)
but the lock is acquired unconditionally, the timeout parameter not implement currently?
test environment: ESP32, MicroPython v1.12 on 2019-12-20
The text was updated successfully, but these errors were encountered:
the timeout parameter not implement currently?
Not currently implemented.
from modthread.c:
modthread.c
if (n_args > 1) { wait = mp_obj_get_int(args[1]); // TODO support timeout arg }
Sorry, something went wrong.
Closing as a duplicate of #3332.
Merge pull request micropython#5945 from EmergReanimator/stm_deinited…
7ba23ff
…_fix Fixed common_hal_busio_uart_deinited incorrect pin assignment check.
No branches or pull requests
I try:
lock.acquire(1, 3)
but the lock is acquired unconditionally, the timeout parameter not implement currently?
test environment: ESP32, MicroPython v1.12 on 2019-12-20
The text was updated successfully, but these errors were encountered: