2019-06-30 06:44:50 +00:00
|
|
|
; 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:esp32dev]
|
|
|
|
platform = espressif32
|
|
|
|
lib_extra_dirs = ~/Documents/Arduino/libraries
|
|
|
|
board = esp32dev
|
|
|
|
framework = arduino
|
|
|
|
board_build.partitions = min_spiffs.csv
|
|
|
|
upload_speed = 921600
|
2019-08-18 19:33:07 +00:00
|
|
|
upload_port = 192.168.20.40
|
|
|
|
upload_protocol = espota
|
|
|
|
;upload_port = COM16
|
|
|
|
;upload_protocol = esptool
|
2019-07-06 13:46:20 +00:00
|
|
|
upload_flags =
|
|
|
|
--port=3232
|
2019-06-30 06:44:50 +00:00
|
|
|
monitor_speed = 115200
|
2019-07-09 12:19:21 +00:00
|
|
|
extra_scripts = post:add_CRC.py
|
2019-07-15 09:56:36 +00:00
|
|
|
; replace shitty Arduino millis with a linear time version
|
2019-07-20 06:08:43 +00:00
|
|
|
build_flags =
|
|
|
|
-Wl,--wrap,millis
|
2019-07-09 12:19:21 +00:00
|
|
|
|