Ingmar Stein
Ingmar Stein
Sure, that would work, but I don't need the Arduino framework and building from HEAD or a pinned version works too: `lib_deps=https://github.com/mrcodetastic/ESP32-HUB75-MatrixPanel-DMA.git#15fd8671d99291a9865fb03fa4bbb5214c56b0e0`. I just can't use the most recent release...
I tried to explain in the initial description: with release 3.0.12, the library is skipped by library dependency finder _for projects not using the Arduino framework_ because library.json states that...
I don't see a platformio.ini file in https://github.com/mrcodetastic/ESP32-HUB75-MatrixPanel-DMA/tree/master/examples/esp-idf/without-gfx? My test project is https://github.com/tronbyt/firmware-http. With ``` [env] platform = espressif32 @ 6.10.0 framework = espidf [env:tidbyt] lib_deps = https://github.com/webmproject/libwebp.git#1d86819f49edc8237fa2b844543081bcb8ef8a92 mrfaptastic/ESP32 HUB75...
Ah, I think what pointed me in the Arduino direction was the fact that when I disable the dependency checker (`lib_compat_mode = off`), the compilation fails due to a missing...
`pio pkg` shows `arduino` as the _only_ compatible framework (like https://registry.platformio.org/libraries/mrfaptastic/ESP32%20HUB75%20LED%20MATRIX%20PANEL%20DMA%20Display/compatibility). There's no `espidf`. Is that expected? ``` ❯ pio pkg show "mrfaptastic/ESP32 HUB75 LED MATRIX PANEL DMA Display" mrfaptastic/ESP32...
I'm new to PlatformIO and its dependency management system and assumed that the Registry uses `library.json` as input, but it seems to be separate? Should it be updated then to...
I used a pinned version in `lib_deps` for reproducible builds (doesn't guard against unavailability, of course).
I've updated the title according to the findings. The request would be to update the PlatformIO Registry and add `espidf`, in addition to `arduino`, so that projects which only use...
Looks like the registry wasn't updated for 3.0.13. It still shows only `arduino` as compatible framework: ``` ❯ pio pkg show "mrfaptastic/ESP32 HUB75 LED MATRIX PANEL DMA Display" mrfaptastic/ESP32 HUB75...
The registry entry is already there. I'm just asking for it to be updated to not require Ardunio after this library was changed to work without it.