-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
55 lines (48 loc) · 1.12 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
; https://docs.platformio.org/page/projectconf.html
[platformio]
src_dir = .
[env]
build_flags =
'-Wall'
'-Wno-deprecated'
lib_extra_dirs =
~/Projects2
lib_deps =
thingpulse/ESP8266 and ESP32 OLED driver for SSD1306 displays@^4.2.0
lib_ldf_mode = deep
check_tool = clangtidy
[env:native]
platform = native
build_flags =
${env.build_flags}
'-DNATIVE'
lib_deps =
${env.lib_deps}
fabiobatsilva/ArduinoFake
test_build_src = yes
build_src_filter = +<src/*>
build_type = debug
[esp32_base]
extends = esp_base
platform = espressif32
monitor_filters = esp32_exception_decoder
[env:d1_mini]
extends = esp_base
platform = espressif8266
board = d1_mini
monitor_filters = esp8266_exception_decoder
[env:lolin_c3_mini]
extends = esp32_base
board = lolin_c3_mini
[env:esp32dev]
extends = esp32_base
board = esp32dev