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
|
2019-08-30 10:08:54 +00:00
|
|
|
;lib_extra_dirs = ~/Documents/Arduino/libraries
|
2019-06-30 06:44:50 +00:00
|
|
|
board = esp32dev
|
|
|
|
framework = arduino
|
2019-08-31 07:34:56 +00:00
|
|
|
board_build.partitions = ABpartition.csv
|
2019-06-30 06:44:50 +00:00
|
|
|
upload_speed = 921600
|
2019-08-25 20:37:41 +00:00
|
|
|
;upload_port = 192.168.20.40
|
|
|
|
;upload_protocol = espota
|
|
|
|
upload_port = COM16
|
|
|
|
upload_protocol = esptool
|
2019-08-30 10:08:54 +00:00
|
|
|
;upload_flags =
|
|
|
|
; --port=3232
|
|
|
|
;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
|
|
|
|