some minor cleanups

* 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.
This commit is contained in:
Girts Folkmanis
2020-02-27 21:45:20 -08:00
parent bf26994d4e
commit 0b8d7768fd
5 changed files with 19 additions and 12 deletions

View File

@@ -21,6 +21,10 @@
"platforms": "*",
"dependencies": [
{ "name": "Update" },
{ "name": "ESP32 BLE Arduino" }
{ "name": "ESP32 BLE Arduino" },
{
"name": "arduino-fsm",
"version": "https://github.com/geeksville/arduino-fsm.git"
}
]
}