-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
43 lines (39 loc) · 1.13 KB
/
platformio.ini
File metadata and controls
43 lines (39 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
; 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
[platformio]
default_envs = feather
[env:nano]
platform = atmelavr
framework = arduino
board = nanoatmega328new
test_build_src = true
monitor_speed = 115200
lib_deps = bblanchon/ArduinoJson@^7.2.1
[env:feather]
platform = espressif32
framework = arduino
board = adafruit_feather_esp32_v2
monitor_speed = 115200
test_build_src = true
test_speed = 115200
lib_deps = bblanchon/ArduinoJson@^7.2.1
monitor_filters = esp32_exception_decoder
[env:gpionano]
platform = atmelavr
framework = arduino
board = nanoatmega328new
upload_protocol = custom
upload_command = sudo avrdude -p $BOARD_MCU -C avrdude_gpio.conf -c peapod -v -U flash:w:$SOURCE:i
monitor_speed = 115200
monitor_port = /dev/ttyS0
test_build_src = true
test_speed = 115200
test_port = /dev/ttyS0
lib_deps = bblanchon/ArduinoJson@^7.2.1