| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- ; 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
- [common]
- release_version = 0.01
- debug_level = ESP_LOG_DEBUG
- core_debug_level = 3
- extra_scripts = pre:build.py
- description = SweProj Gotek
- [env:SweFlops]
- platform = espressif32 @ 6.9.0
- board = esp32-s3-devkitm-1
- board_build.mcu = esp32s3
- board_build.f_cpu = 240000000L
- framework = arduino
- lib_deps = https://github.com/tzapu/WiFiManager
- https://git.sweproj.com/sweproj.com/SdFat/archive/1.1.4.zip
- ESP32WebServer
- fbiego/ESP32Time@^2.0.0
- NTPClient
- https://github.com/bblanchon/ArduinoJson
- ESP32Time
- https://github.com/gutierrezps/ESP32_I2C_Slave
- Wire
-
- build_type = debug
- build_flags =
- -DCONFIG_MBEDTLS_DYNAMIC_BUFFER=1
- -w
- '-DCORE_DEBUG_LEVEL=${common.core_debug_level}'
- '-DLOG_LOCAL_LEVEL=${common.debug_level}'
- '-DPROGVERSION="${common.release_version}"'
- '-DGOTEK_VERSION=0.01'
- monitor_port = /dev/ttyUSB0
- monitor_speed = 115200
- upload_speed = 921600
- upload_port = /dev/ttyUSB0
- monitor_filters = esp32_exception_decoder
- debug_tool = jlink
- debug_init_break = tbreak setup
|