Skip to content

Commit 726dc5c

Browse files
committed
bench/arty_ptp: reduce IGMP report interval to 2 seconds
1 parent d2b60e1 commit 726dc5c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

bench/arty_ptp.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,9 @@ def __init__(self, sys_clk_freq=int(100e6), p2p=False, ptp_debug=False):
111111
if p2p:
112112
ptp_igmp_groups.append(0xE000006B) # 224.0.0.107.
113113
self.add_etherbone(phy=self.ethphy, buffer_depth=255,
114-
with_igmp = True,
115-
igmp_groups = ptp_igmp_groups,
114+
with_igmp = True,
115+
igmp_groups = ptp_igmp_groups,
116+
igmp_interval = 2,
116117
)
117118

118119
# PTP --------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)