Update platformio.ini settings and fix test apps (#1815)
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Co-authored-by: Otto Winter <otto@otto-winter.com>
This commit is contained in:
@@ -10,43 +10,49 @@ include_dir = include
|
||||
|
||||
[common]
|
||||
lib_deps =
|
||||
esphome/AsyncTCP-esphome@1.2.2
|
||||
AsyncMqttClient-esphome@0.8.4
|
||||
ArduinoJson-esphomelib@5.13.3
|
||||
ESPAsyncWebServer-esphome@1.2.7
|
||||
fastled/FastLED@3.3.2
|
||||
FastLED@3.3.2
|
||||
NeoPixelBus-esphome@2.6.2
|
||||
ESPAsyncTCP-esphome@1.2.3
|
||||
1655@1.0.2 ; TinyGPSPlus (has name conflict)
|
||||
6865@1.0.0 ; TM1651 Battery Display
|
||||
6306@1.0.3 ; HM3301
|
||||
build_flags =
|
||||
-Wno-reorder
|
||||
-DUSE_WEB_SERVER
|
||||
-DUSE_FAST_LED_LIGHT
|
||||
-DUSE_NEO_PIXEL_BUS_LIGHT
|
||||
-fno-exceptions
|
||||
-Wno-sign-compare
|
||||
-Wno-unused-but-set-variable
|
||||
-Wno-unused-variable
|
||||
-DCLANG_TIDY
|
||||
-DESPHOME_LOG_LEVEL=ESPHOME_LOG_LEVEL_VERY_VERBOSE
|
||||
; Don't use FlashStringHelper for debug builds because CLion freaks out for all
|
||||
; log messages
|
||||
src_filter = +<esphome>
|
||||
src_filter =
|
||||
+<esphome>
|
||||
+<tests/dummy_main.cpp>
|
||||
|
||||
[env:livingroom8266]
|
||||
; use Arduino framework v2.3.0 for clang-tidy (latest 2.5.2 breaks static code analysis, see #760)
|
||||
platform = espressif8266@1.8.0
|
||||
board = nodemcuv2
|
||||
; use Arduino framework v2.4.2 for clang-tidy (latest 2.5.2 breaks static code analysis, see #760)
|
||||
platform = platformio/espressif8266@1.8.0
|
||||
framework = arduino
|
||||
board = nodemcuv2
|
||||
lib_deps =
|
||||
${common.lib_deps}
|
||||
ESP8266WiFi
|
||||
Hash
|
||||
ESPAsyncTCP-esphome@1.2.3
|
||||
Update
|
||||
build_flags = ${common.build_flags}
|
||||
src_filter = ${common.src_filter} +<tests/livingroom8266.cpp>
|
||||
src_filter = ${common.src_filter}
|
||||
|
||||
[env:livingroom32]
|
||||
platform = espressif32@1.12.4
|
||||
board = nodemcu-32s
|
||||
platform = platformio/espressif32@3.2.0
|
||||
framework = arduino
|
||||
lib_deps = ${common.lib_deps}
|
||||
build_flags = ${common.build_flags} -DUSE_ETHERNET
|
||||
src_filter = ${common.src_filter} +<tests/livingroom32.cpp>
|
||||
board = nodemcu-32s
|
||||
lib_deps =
|
||||
${common.lib_deps}
|
||||
esphome/AsyncTCP-esphome@1.2.2
|
||||
Update
|
||||
build_flags =
|
||||
${common.build_flags}
|
||||
-DUSE_ETHERNET
|
||||
src_filter =
|
||||
${common.src_filter}
|
||||
-<esphome/components/esp8266_pwm>
|
||||
|
||||
Reference in New Issue
Block a user