49 lines
1.4 KiB
INI
49 lines
1.4 KiB
INI
; PlatformIO Project Configuration File
|
|
;
|
|
; Build options: build flags, source filter
|
|
; Upload options: custom upload port, speed and extra flags
|
|
; Library options: dependencies, extra library storages
|
|
; Advanced options: extra scripting
|
|
;
|
|
; Please visit documentation for the other options and examples
|
|
; https://docs.platformio.org/page/projectconf.html
|
|
|
|
[env:esp32s3dev]
|
|
platform = espressif32
|
|
board = wroom-32S3-N8R2
|
|
framework = arduino
|
|
board_build.filesystem = littlefs
|
|
board_build.partitions = partitions_8mb_ota_2mb_ee.cvs
|
|
monitor_speed = 115200
|
|
monitor_filters = esp32_exception_decoder
|
|
board_build.sdkconfig_defaults = sdkconfig.defaults
|
|
|
|
lib_deps =
|
|
bblanchon/ArduinoJson
|
|
makuna/NeoPixelBus @ ^2.8.3
|
|
https://github.com/me-no-dev/ESPAsyncWebServer
|
|
jeremycole/I2C Temperature Sensors derived from the LM75 @ ^1.0.3
|
|
mathertel/OneButton @ ^2.6.1
|
|
h2zero/NimBLE-Arduino @ ^1.4.1
|
|
#h2zero/NimBLE-Arduino @ ^2.3.6
|
|
adafruit/Adafruit SSD1306 @ ^2.5.7
|
|
fastled/FastLED @ ^3.9.4
|
|
marian-craciunescu/ESP32Ping@^1.7
|
|
|
|
|
|
build_flags =
|
|
-mfix-esp32-psram-cache-issue
|
|
-D CONFIG_LOG_DYNAMIC_LEVEL_CONTROL=1
|
|
-D LOG_LOCAL_LEVEL=5
|
|
-D CORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_INFO
|
|
#-D CORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_INFO
|
|
-D CONFIG_ARDUHAL_LOG_COLORS=1
|
|
#-Os
|
|
#-ffunction-sections
|
|
#-fdata-sections
|
|
#-Wl,--gc-sections
|
|
|
|
upload_port = COM5
|
|
debug_init_break = tbreak setup
|
|
monitor_port = COM5
|