David Lechner
David Lechner
I was using https://github.com/analogdevicesinc/linux/tree/dlech/spi-engine-offload-ad7980-pwmgen-v2 when I hit this issue. Using the `zynq-zed-adv7511-ad7380.dts` device tree file.
There are a few modules the probably need to be enabled (e.g. `CONFIG_AD7380`, `CONFIG_IIO_PWM_TRIGGERED_DMA_BUFFER`). Try this config file: [ad7380-config.txt](https://github.com/analogdevicesinc/hdl/files/14127507/ad7380-config.txt)
Oof, weird error. Here are the requested files. [hdl-issue-1254.zip](https://github.com/analogdevicesinc/hdl/files/14145436/hdl-issue-1254.zip) FYI, I pushed one more commit to the Linux branch to fix an issue that only showed up when compiling everything...
I haven't had a chance to test with AD783x yet since I've been working on AD7944 instead. But we did test a different BOOT.BIN built from the main branch that...
The Pybricks core developers don't use Pycharam. But if anyone from the community wants to create an extension, we are happy to answer questions about the communication protocol.
> I just could never find where and how you communicate with the brick. https://github.com/pybricks/technical-info/blob/master/pybricks-ble-profile.md is a good place to start
I'm not opposed tot the idea. And I already spend half of a day trying to implement it. But I found it to be way too technically complex given the...
It's not a bug, it s feature. :laughing: [Type aliases](https://docs.python.org/3/library/typing.html#typing.TypeAlias) are a thing in Python, and apparently Sphinx has added special handling for this (this on is implicit rather than...
This is extending a standard Python module with non-standard features. It would be better to stick with the standard functionality for maximum compatibility (or a subset of it to keep...
> I'm not sure what you mean, Python did add support for "e" in struct in version 3.6. 🤦 how did I never notice that before