David Lechner
David Lechner
Did you try https://pyinstaller.org/en/stable/when-things-go-wrong.html#listing-hidden-imports to see if you can help pyinstaller find the missing packages?
> Is this a known Windows-specific limitation when enabling indications? Don't know. I've only used notifications, not indications. > Could it be related to BLE passthrough from macOS via Parallels?...
An even better fix would be to avoid calling `_format_event_args` at all if the log level is not debug. ```python if logger.isEnabledFor(logging.DEBUG): logger.debug("Received %s.", _format_event_args(event_args)) ```
> Anything else I could try? Your current plan sounds optimal. > So I suspect somehow the passthrough is causing issues with MTU sizes as well. Indeed!
> and the bluetooth communication is unusable. why? how about USB as an alternative? > Would this be possible? if yes, how? Not without some serious hacking of the PRU...
In ev3dev, you can have a network connection over USB between two bricks just like you can from the EV3 to your computer. If you are using Pybricks MicroPython for...
I don't know of any good links. But there are a number of issues here about daisy chaining. I think the trick is to enable the USB gadget feature on...
Duplicate of #1347?
Memory intensive tasks like installing packages using `apt` will fail without additional swap memory. Technically Debian stretch has a minimum system requirement of 128MB of RAM.
The swap memory is implemented using compressed RAM (zram) and therefore never touches the SD card.