-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
48 lines (45 loc) · 952 Bytes
/
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
[platformio]
default_envs = d1
[env]
build_flags =
-Wall
-Werror
-std=c++20
build_src_flags =
-Wall
-Werror
-std=c++20
check_severity = low, medium, high
check_skip_packages = yes
check_tool = cppcheck
check_flags =
cppcheck: --verbose
--enable=warning,style,performance,portability
--suppress=*:*/.pio/libdeps/*
lib_deps = throwtheswitch/Unity@^2.5.2
test_framework = unity
test_speed = 115200
monitor_speed = 115200
[env:native]
platform = native
build_flags =
-Wall
-Werror
-std=c++2a
build_src_flags =
-Wall
-Werror
-std=c++2a
-DENV_NATIVE
[env:d1]
platform = espressif8266
board = d1_mini
framework = arduino
upload_speed = 460800
board_build.filesystem = littlefs
lib_deps =
Wire@^1.0
thingpulse/ESP8266 and ESP32 OLED driver for SSD1306 displays@^4.3.0
alanswx/ESPAsyncWiFiManager@^0.31
esphome/ESPAsyncWebServer-esphome@^2.1.0
pfeerick/elapsedMillis@^1.0.6