David Lechner
David Lechner
> Is there a particular ide / autocomplete package you're using currently? We're using Pylance(based on Pyright) in VSCode and also Jedi. > A proper micropython autocomplete setup is something...
One place the GIL release is potentially missing is here in `mp_hal_delay_ms()`: ```diff diff --git a/ports/unix/unix_mphal.c b/ports/unix/unix_mphal.c index 6f2def890..6fb219337 100644 --- a/ports/unix/unix_mphal.c +++ b/ports/unix/unix_mphal.c @@ -246,7 +246,9 @@ void mp_hal_delay_ms(mp_uint_t...
The second point is that sleep is currently implemented using `select()` if floats are enable or `sleep()` if not. https://github.com/micropython/micropython/blob/45ab801c300d605db96229f6e0626ebe2801f24d/ports/unix/modtime.c#L94-L133 In either case, `MICROPY_EVENT_POLL_HOOK` is not called while sleeping which...
The use of `usleep()` in `ports/unix/mpbthciport.c` and `ports/unix/mpbtstackport_usb.c` are in non-MicroPython background threads, so I don't think they need to be replaced with `mp_hal_delay_us()`.
This sounds like the same issue as #1127. It seems like a browser bug in the file system access API where omitting the supposedly optional description for the file types...
:+1: Thanks (I did search first, really :smile:).
There is already PR #1233.
This sounds like a duplicate of #1127.
Did you check https://github.com/kee-org/keepassrpc/releases?
No update should be needed. See https://github.com/kee-org/keepassrpc/issues/123#issuecomment-840774559.