Skip to content

Commit 1467c12

Browse files
committed
Fix multicast broadcast address
1 parent 1f1be7d commit 1467c12

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bellows/ezsp/v14/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ async def send_multicast(
115115
status, sequence = await self.sendMulticast(
116116
aps_frame=aps_frame,
117117
hops=non_member_radius,
118-
broadcast_addr=aps_frame.groupId,
118+
broadcast_addr=t.BroadcastAddress.ALL_ROUTERS_AND_COORDINATOR,
119119
alias=0x0000,
120120
sequence=aps_frame.sequence,
121121
message_tag=message_tag,

bellows/ezsp/v14/commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ class GetTokenDataRsp(Struct):
133133
{
134134
"aps_frame": t.EmberApsFrame,
135135
"hops": t.uint8_t,
136-
"broadcast_addr": t.NWK,
136+
"broadcast_addr": t.BroadcastAddress,
137137
"alias": t.uint16_t,
138138
"sequence": t.uint8_t,
139139
"message_tag": t.uint8_t,

0 commit comments

Comments
 (0)