Skip to content

Commit

Permalink
Merge pull request #1173 from slaclab/SsiPrbsRx-patch
Browse files Browse the repository at this point in the history
bug fix for SsiPrbsRx.WordRate
  • Loading branch information
ruck314 committed Jul 10, 2024
2 parents 53b8fe3 + 0adc595 commit abb9eb7
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 abb9eb7

Please sign in to comment.