_USB + _OTA envs
This commit is contained in:
parent
9c49004fda
commit
0d73d112b1
@ -8,17 +8,37 @@
|
|||||||
; Please visit documentation for the other options and examples
|
; Please visit documentation for the other options and examples
|
||||||
; https://docs.platformio.org/page/projectconf.html
|
; https://docs.platformio.org/page/projectconf.html
|
||||||
|
|
||||||
[env:esp32dev]
|
[basic]
|
||||||
platform = espressif32
|
platform = espressif32
|
||||||
board = esp32dev
|
board = esp32dev
|
||||||
framework = arduino
|
framework = arduino
|
||||||
lib_deps = https://github.com/adafruit/Adafruit_NeoPixel
|
lib_deps = https://github.com/adafruit/Adafruit_NeoPixel
|
||||||
https://github.com/knolleary/pubsubclient
|
https://github.com/knolleary/pubsubclient
|
||||||
build_flags =
|
build_flags =
|
||||||
upload_port = 10.0.0.116
|
|
||||||
upload_protocol = espota
|
|
||||||
;upload_port = /dev/ttyUSB0
|
|
||||||
;upload_speed = 921600
|
|
||||||
monitor_port = /dev/ttyUSB0
|
monitor_port = /dev/ttyUSB0
|
||||||
monitor_speed = 115200
|
monitor_speed = 115200
|
||||||
monitor_filters = esp32_exception_decoder
|
monitor_filters = esp32_exception_decoder
|
||||||
|
|
||||||
|
[env:RGBMatrixDisplay_USB]
|
||||||
|
platform = ${basic.platform}
|
||||||
|
board = ${basic.board}
|
||||||
|
framework = ${basic.framework}
|
||||||
|
lib_deps = ${basic.lib_deps}
|
||||||
|
build_flags = ${basic.build_flags}
|
||||||
|
monitor_port = ${basic.monitor_port}
|
||||||
|
monitor_speed = ${basic.monitor_speed}
|
||||||
|
monitor_filters = ${basic.monitor_filters}
|
||||||
|
upload_port = /dev/ttyUSB0
|
||||||
|
upload_speed = 921600
|
||||||
|
|
||||||
|
[env:RGBMatrixDisplay_OTA]
|
||||||
|
platform = ${basic.platform}
|
||||||
|
board = ${basic.board}
|
||||||
|
framework = ${basic.framework}
|
||||||
|
lib_deps = ${basic.lib_deps}
|
||||||
|
build_flags = ${basic.build_flags}
|
||||||
|
monitor_port = ${basic.monitor_port}
|
||||||
|
monitor_speed = ${basic.monitor_speed}
|
||||||
|
monitor_filters = ${basic.monitor_filters}
|
||||||
|
upload_port = 10.0.0.116
|
||||||
|
upload_protocol = espota
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user