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
|
2020-04-20 03:39:39 +00:00
|
|
|
|
|
|
|
; ; Options to use OTA upload
|
|
|
|
; upload_protocol = espota
|
|
|
|
; upload_port = 192.168.20.116
|
|
|
|
; upload_flags =
|
|
|
|
; --port=3232
|
|
|
|
|
|
|
|
; Options to use serial upload
|
2020-01-04 07:13:40 +00:00
|
|
|
upload_protocol = esptool
|
2020-04-20 03:39:39 +00:00
|
|
|
; upload_port = COM5
|
|
|
|
upload_port = COM14
|
|
|
|
upload_speed = 921600
|
|
|
|
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 =
|
2020-01-15 06:52:43 +00:00
|
|
|
-Wl,--wrap,millis
|
2020-05-13 00:37:31 +00:00
|
|
|
-DHTTPS_LOGLEVEL=2
|
2019-10-27 00:02:49 +00:00
|
|
|
debug_tool = esp-prog
|
2020-01-04 07:13:40 +00:00
|
|
|
;upload_protocol = esp-prog
|
2020-01-15 06:52:43 +00:00
|
|
|
debug_init_break =
|