forked from jeecrypt/JeeUIFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
55 lines (47 loc) · 1.47 KB
/
platformio.ini
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
44
45
46
47
48
49
50
51
52
53
54
55
; 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
; http://docs.platformio.org/page/projectconf.html
; eagle.flash.512k0.ld 512K (no SPIFFS)
; eagle.flash.512k64.ld 512K (64K SPIFFS)
; eagle.flash.512k128.ld 512K (128K SPIFFS)
; eagle.flash.1m0.ld 1M (no SPIFFS)
; eagle.flash.1m64.ld 1M (64K SPIFFS)
; eagle.flash.1m128.ld 1M (128K SPIFFS)
; eagle.flash.1m144.ld 1M (144K SPIFFS)
; eagle.flash.1m160.ld 1M (160K SPIFFS)
; eagle.flash.1m192.ld 1M (192K SPIFFS)
; eagle.flash.1m256.ld 1M (256K SPIFFS)
; eagle.flash.1m512.ld 1M (512K SPIFFS)
; eagle.flash.2m.ld 2M (1M SPIFFS)
; eagle.flash.4m1m.ld 4M (1M SPIFFS)
; eagle.flash.4m2m.ld 4M (2M SPIFFS)
; eagle.flash.4m.ld 4M (3M SPIFFS)
; eagle.flash.8m.ld 8M (7M SPIFFS)
; eagle.flash.16m.ld 16M (15M SPIFFS)
[platformio]
data_dir = ./data
; uncomment for ESP32
[env:esp32dev]
platform = espressif32
board = esp32dev
framework = arduino
lib_deps = AsyncTCP
lib_deps = ESP Async WebServer
monitor_speed = 115200
upload_speed = 921600
; uncomment for ESP8266
; [env:myboard]
; platform = espressif8266
; board = esp12e
; build_flags = -Wl,-Teagle.flash.4m1m.ld
; framework = arduino
; lib_deps = ESP Async WebServer
; lib_deps = ESPAsyncTCP
; monitor_speed = 115200
; upload_speed = 921600