Skip to content

Commit cbc8186

Browse files
authored
Update Zigbee library names and add RCP mode
1 parent 136d9fd commit cbc8186

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

configs/pio_start.txt

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,28 @@ flatten_cppdefines = env.Flatten(env['CPPDEFINES'])
4343
if "ZIGBEE_MODE_ZCZR" in flatten_cppdefines:
4444
env.Append(
4545
LIBS=[
46-
"-lesp_zb_api.zczr",
46+
"-lesp_zb_api_zczr",
47+
"-lesp_zb_cli_command",
4748
"-lzboss_stack.zczr",
48-
"-lzboss_port.native"
49+
"-lzboss_port"
4950
]
5051
)
5152
if "ZIGBEE_MODE_ED" in flatten_cppdefines:
5253
env.Append(
5354
LIBS=[
54-
"-lesp_zb_api.ed",
55+
"-lesp_zb_api_ed",
56+
"-lesp_zb_cli_command",
5557
"-lzboss_stack.ed",
56-
"-lzboss_port.native"
58+
"-lzboss_port"
59+
]
60+
)
61+
if "ZIGBEE_MODE_RCP" in flatten_cppdefines:
62+
env.Append(
63+
LIBS=[
64+
"-lesp_zb_api_rcp",
65+
"-lesp_zb_cli_command",
66+
"-lzboss_stack.rcp",
67+
"-lzboss_port"
5768
]
5869
)
5970

0 commit comments

Comments
 (0)