mirror of
https://github.com/torlando-tech/pyxis.git
synced 2026-06-24 00:11:51 +00:00
39ece8800c
auto_interface and ble_interface declared `"microReticulum": "*"` as a PIO library dependency. With deep+ LDF mode, that triggered PIO to auto-fetch a parallel microReticulum copy into .pio/libdeps/tdeck/microReticulum/ alongside our intended deps/microReticulum/ overlay. The linker would silently pick the fetched copy, dropping any local fork's .cpp changes. These libs only need microReticulum HEADERS (already provided by the project-level `-Ideps/microReticulum/src` build_flag), not a separate linkable library — the actual microReticulum .a is built once via `lib_extra_dirs = deps/microReticulum`. Dropping the dependency declaration prevents the duplicate fetch. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
13 lines
386 B
JSON
13 lines
386 B
JSON
{
|
|
"name": "auto_interface",
|
|
"version": "0.0.1",
|
|
"description": "AutoInterface implementation for peer discovery via IPv6 multicast",
|
|
"keywords": "reticulum, autointerface, ipv6, multicast",
|
|
"license": "MIT",
|
|
"frameworks": ["arduino"],
|
|
"platforms": ["espressif32"],
|
|
"build": {
|
|
"flags": "-std=gnu++11 -I../../../../deps/microReticulum/src"
|
|
}
|
|
}
|