mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-02 02:39:57 +00:00
0b8d7768fd
* Suppress warnings about conflicting library names in platformio.ini by explicitly picking the libraries by id that we want. * fix unused static function warning by making it not static ;) * declare arduino-fsm as dependency for BluetoothOTA. Hopefully this fixes the CI builds? Tested: `pio run` builds.
31 lines
656 B
JSON
31 lines
656 B
JSON
{
|
|
"name": "BluetoothOTA",
|
|
"keywords": "esp32, bluetooth",
|
|
"description": "A BTLE based software OTA update tool",
|
|
"repository":
|
|
{
|
|
"type": "git",
|
|
"url": "https://github.com/geeksville/fixme.git"
|
|
},
|
|
"authors":
|
|
[
|
|
{
|
|
"name": "Kevin Hester",
|
|
"email": "kevinh@geeksville.com",
|
|
"url": "https://github.com/geeksville",
|
|
"maintainer": true
|
|
}
|
|
],
|
|
"version": "0.0.1",
|
|
"frameworks": "arduino",
|
|
"platforms": "*",
|
|
"dependencies": [
|
|
{ "name": "Update" },
|
|
{ "name": "ESP32 BLE Arduino" },
|
|
{
|
|
"name": "arduino-fsm",
|
|
"version": "https://github.com/geeksville/arduino-fsm.git"
|
|
}
|
|
]
|
|
}
|