forked from khoih-prog/AsyncTCP_RP2040W
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
59 lines (55 loc) · 1.32 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
56
57
58
59
[platformio]
default_envs = rp2040, rp2350
lib_dir = .
; src_dir = examples/Client
src_dir = examples/Server
[env:rp2040]
framework = arduino
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
board = rpipicow
board_build.core = earlephilhower
build_flags =
-Og
-Wall -Wextra
-Wno-unused-parameter
; -D CONFIG_ARDUHAL_LOG_COLORS
-D CORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_VERBOSE
monitor_speed = 115200
monitor_filters = log2file
lib_compat_mode = strict
lib_ldf_mode = chain
lib_deps =
ayushsharma82/RPAsyncTCP@^1.3.1
lib_ignore =
lwIP_ESPHost
[env:rp2350]
framework = arduino
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
board = rpipico2w
board_build.core = earlephilhower
build_flags =
-Og
-Wall -Wextra
-Wno-unused-parameter
; -D CONFIG_ARDUHAL_LOG_COLORS
-D CORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_VERBOSE
monitor_speed = 115200
monitor_filters = log2file
lib_compat_mode = strict
lib_ldf_mode = chain
lib_deps =
ayushsharma82/RPAsyncTCP@^1.3.1
lib_ignore =
lwIP_ESPHost
; CI
[env:ci-raspberrypi]
framework = arduino
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
board = ${sysenv.PIO_BOARD}
board_build.core = earlephilhower
lib_deps =
ayushsharma82/RPAsyncTCP@^1.3.1
lib_ignore =
lwIP_ESPHost
build_flags = ${env.build_flags}
-Wno-missing-field-initializers