We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 136d9fd commit cbc8186Copy full SHA for cbc8186
configs/pio_start.txt
@@ -43,17 +43,28 @@ flatten_cppdefines = env.Flatten(env['CPPDEFINES'])
43
if "ZIGBEE_MODE_ZCZR" in flatten_cppdefines:
44
env.Append(
45
LIBS=[
46
- "-lesp_zb_api.zczr",
+ "-lesp_zb_api_zczr",
47
+ "-lesp_zb_cli_command",
48
"-lzboss_stack.zczr",
- "-lzboss_port.native"
49
+ "-lzboss_port"
50
]
51
)
52
if "ZIGBEE_MODE_ED" in flatten_cppdefines:
53
54
- "-lesp_zb_api.ed",
55
+ "-lesp_zb_api_ed",
56
57
"-lzboss_stack.ed",
58
59
+ ]
60
+ )
61
+if "ZIGBEE_MODE_RCP" in flatten_cppdefines:
62
+ env.Append(
63
+ LIBS=[
64
+ "-lesp_zb_api_rcp",
65
66
+ "-lzboss_stack.rcp",
67
68
69
70
0 commit comments