cdfceba34d
Remove stale byte-identical root duplicates and promote the canonical
library to the repo root: one source of truth (src/meshcore_companion.{c,h})
serving both a portable C library and a publishable C++ Arduino/PlatformIO
library.
- Portable C99 core + C++ Arduino wrapper in src/
- Arduino sketch in examples/, new Linux tty example in examples-linux/
- CMakeLists.txt for the Linux/native host build (core + example + test)
- Host codec unit test in test/
- README rewritten around the two purposes
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
20 lines
930 B
JSON
20 lines
930 B
JSON
{
|
|
"name": "MeshCoreCompanion",
|
|
"version": "0.1.0",
|
|
"description": "Client library for the MeshCore Companion Radio serial protocol. Portable C99 core (no I/O, no malloc, host-testable) with a thin Arduino C++ wrapper that connects a host MCU to a separate MeshCore companion radio over UART/USB serial. Receive and send on channels, set channel PSKs, read SNR/path metadata.",
|
|
"keywords": ["meshcore", "lora", "companion", "serial", "mesh", "sx1262", "esp32", "nrf52"],
|
|
"authors": [
|
|
{ "name": "Scott Penrose", "maintainer": true }
|
|
],
|
|
"license": "MIT",
|
|
"frameworks": ["arduino"],
|
|
"platforms": ["espressif32", "nordicnrf52", "raspberrypi", "ststm32"],
|
|
"headers": ["MeshCoreCompanion.h", "meshcore_companion.h"],
|
|
"build": {
|
|
"srcFilter": ["+<*.c>", "+<*.cpp>"]
|
|
},
|
|
"examples": [
|
|
{ "name": "SensorChannelBridge", "base": "examples/SensorChannelBridge", "files": ["SensorChannelBridge.ino"] }
|
|
]
|
|
}
|