Skip to content

Commit

Permalink
Merge pull request #1179 from slaclab/LeapXcvr-bug-fixes
Browse files Browse the repository at this point in the history
_LeapXcvrUpperPages.py bug fix
  • Loading branch information
ruck314 committed Jul 23, 2024
2 parents ea58d84 + 023653a commit 7bc993f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/surf/devices/amphenol/_LeapXcvrUpperPages.py
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ def __init__(self, **kwargs):
mode = 'RO',
disp = '0x{:x}',
typeStr = 'UInt12',
linkedGet = lambda read: self.VendorOuiRaw[2].get(read=read)()+(2**8)*self.VendorOuiRaw[1].get(read=read)()+(2**16)*self.VendorOuiRaw[0].get(read=read)(),
linkedGet = lambda read: self.VendorOuiRaw[2].get(read=read)+(2**8)*self.VendorOuiRaw[1].get(read=read)+(2**16)*self.VendorOuiRaw[0].get(read=read),
dependencies = [self.VendorOuiRaw[x] for x in range(3)],
))

Expand Down

0 comments on commit 7bc993f

Please sign in to comment.