Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
bengineerd committed Nov 13, 2023
1 parent 420e207 commit 92d7093
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions python/surf/devices/analog_devices/_Ad9249.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,8 +442,8 @@ def __init__(self,


self.add(pr.RemoteVariable(
name = f'Delay',
description = f'IDELAY value',
name = 'Delay',
description = 'IDELAY value',
offset = 0x00,
bitSize = delayBits,
bitOffset = 0,
Expand All @@ -452,7 +452,7 @@ def __init__(self,
verify = False,
groups = 'NoConfig',
))

self.add(pr.RemoteCommand(
name='Relock',
hidden=False,
Expand All @@ -461,9 +461,9 @@ def __init__(self,
bitOffset=0,
base=pr.UInt,
function=pr.RemoteCommand.toggle))

self.add(pr.RemoteVariable(
name = f'ErrorDetCount',
name = 'ErrorDetCount',
description = 'Number of times that frame lock has been lost since reset',
offset = 0x30,
disp = '{:d}',
Expand All @@ -474,7 +474,7 @@ def __init__(self,
))

self.add(pr.RemoteVariable(
name = f'LostLockCount',
name = 'LostLockCount',
description = 'Number of times that frame lock has been lost since reset',
offset = 0x50,
bitSize = 16,
Expand All @@ -484,7 +484,7 @@ def __init__(self,
))

self.add(pr.RemoteVariable(
name = f'Locked',
name = 'Locked',
description = 'Readout has locked on to the frame boundary',
offset = 0x50,
bitSize = 1,
Expand All @@ -494,7 +494,7 @@ def __init__(self,
))

self.add(pr.RemoteVariable(
name = f'AdcFrameSync',
name = 'AdcFrameSync',
description = 'Last deserialized FCO value for debug',
offset = 0x58,
bitSize = 14,
Expand Down

0 comments on commit 92d7093

Please sign in to comment.