Skip to content

Commit

Permalink
bug fix for SsiPrbsRx.WordRate
Browse files Browse the repository at this point in the history
  • Loading branch information
ruck314 committed Jul 6, 2024
1 parent 53b8fe3 commit 0adc595
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/surf/protocols/ssi/_SsiPrbsRx.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def __init__(self,
dependencies = [self.PacketRate, self.PacketLength],
units = 'Words/sec',
disp = '{:0.1f}',
linkedGet = lambda read: self.PacketRate.read(read=read) * self.PacketLength.get(read=read)))
linkedGet = lambda read: self.PacketRate.get(read=read) * self.PacketLength.get(read=read)))

self.add(pr.LinkVariable(
name = 'BitRate',
Expand Down

0 comments on commit 0adc595

Please sign in to comment.