19 lines
683 B
INI
19 lines
683 B
INI
; Self-contained PlatformIO project for the "echo" example.
|
|
;
|
|
; Unlike `pio ci`, this is a normal project you can build, upload and monitor
|
|
; right here. It pulls in the library from the repo root (two levels up) via a
|
|
; relative symlink dependency, so there is no copy of the source -- the library's
|
|
; library.json compiles src/meshcore_companion.c + src/MeshCoreCompanion.cpp.
|
|
;
|
|
; cd examples/echo
|
|
; pio run # compile
|
|
; pio run -t upload # flash over USB
|
|
; pio device monitor # serial console (115200)
|
|
|
|
[env:esp32-s3]
|
|
platform = espressif32
|
|
board = esp32-s3-devkitc-1
|
|
framework = arduino
|
|
monitor_speed = 115200
|
|
lib_deps = symlink://../..
|