-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathplatformio.ini
More file actions
36 lines (30 loc) · 980 Bytes
/
Copy pathplatformio.ini
File metadata and controls
36 lines (30 loc) · 980 Bytes
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
; WireClaw - ESP32 AI Agent
;
; Build: pio run (builds default target: esp32-c6)
; Upload: pio run -t upload
; Monitor: pio device monitor
; FS: pio run -t uploadfs
;
; Other targets: pio run -e esp32-s3, pio run -e esp32, pio run -e esp32-c3
[platformio]
default_envs = esp32-c6
[env]
platform = https://github.com/pioarduino/platform-espressif32/releases/download/stable/platform-espressif32.zip
framework = arduino
board_build.filesystem = littlefs
board_build.partitions = partitions.csv
board_upload.flash_size = 4MB
monitor_speed = 115200
monitor_filters = colorize, time
[env:esp32-c6]
board = esp32-c6-devkitc-1
upload_port = /dev/ttyACM0
monitor_port = /dev/ttyACM0
[env:esp32-s3]
board = esp32-s3-devkitc-1
; Classic ESP32 not supported: DRAM overflow (~60KB over dram0_0_seg limit)
; due to large static buffers (LLM request, history, TLS). Use ESP32-C3 instead.
;[env:esp32]
;board = esp32dev
[env:esp32-c3]
board = esp32-c3-devkitm-1