mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2026-01-26 08:39:09 +03:00
now shipping with platformio.ini as standard
This commit is contained in:
78
platformio.ini
Normal file
78
platformio.ini
Normal file
@@ -0,0 +1,78 @@
|
||||
;
|
||||
; PlatformIO Project Configuration File for EMS-ESP
|
||||
;
|
||||
|
||||
[platformio]
|
||||
;default_envs = release
|
||||
default_envs = debug
|
||||
;default_envs = crash
|
||||
;default_envs = tests
|
||||
|
||||
[common]
|
||||
; -DMYESP_TIMESTAMP -DTESTS -DCRASH -DFORCE_SERIAL -DLOGICANALYZER
|
||||
;general_flags = -DFORCE_SERIAL
|
||||
general_flags =
|
||||
|
||||
[env]
|
||||
;board = esp12e
|
||||
board = d1_mini
|
||||
framework = arduino
|
||||
platform = espressif8266
|
||||
lib_deps =
|
||||
ESPAsyncTCP
|
||||
CRC32
|
||||
CircularBuffer
|
||||
OneWire
|
||||
JustWifi
|
||||
AsyncMqttClient
|
||||
ArduinoJson
|
||||
EEPROM_Rotate
|
||||
ESP Async WebServer
|
||||
ESPAsyncUDP
|
||||
upload_speed = 921600
|
||||
monitor_speed = 115200
|
||||
|
||||
; example ports for OSX
|
||||
;upload_port = /dev/cu.wchusbserial14403
|
||||
;upload_port = /dev/cu.usbserial-1440
|
||||
|
||||
; uncomment next 2 lines for OTA
|
||||
;upload_protocol = espota
|
||||
;upload_port = ems-esp.local
|
||||
|
||||
[env:buildweb]
|
||||
extra_scripts = pre:scripts/buildweb.py
|
||||
|
||||
[env:tests]
|
||||
build_type = debug
|
||||
build_flags = ${common.general_flags} -DTESTS
|
||||
extra_scripts =
|
||||
pre:scripts/rename_fw.py
|
||||
pre:scripts/buildweb.py
|
||||
|
||||
[env:crash]
|
||||
build_type = debug
|
||||
build_flags = ${common.general_flags} -DNO_GLOBAL_EEPROM -DCRASH
|
||||
extra_scripts =
|
||||
pre:scripts/rename_fw.py
|
||||
pre:scripts/buildweb.py
|
||||
|
||||
[env:debug]
|
||||
build_type = debug
|
||||
build_flags = ${common.general_flags}
|
||||
extra_scripts =
|
||||
pre:scripts/rename_fw.py
|
||||
pre:scripts/buildweb.py
|
||||
|
||||
[env:clean]
|
||||
extra_scripts = pre:scripts/clean_fw.py
|
||||
|
||||
[env:release]
|
||||
build_flags = ${common.general_flags} -DNO_GLOBAL_EEPROM
|
||||
extra_scripts = pre:scripts/rename_fw.py
|
||||
|
||||
[env:checkcode]
|
||||
build_type = debug
|
||||
build_flags = ${common.general_flags} -Wall
|
||||
extra_scripts = scripts/checkcode.py
|
||||
|
||||
Reference in New Issue
Block a user