Skip to content

Commit

Permalink
Rename and hide variable
Browse files Browse the repository at this point in the history
  • Loading branch information
bengineerd committed Nov 19, 2024
1 parent 2387a0d commit 8cb35db
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions python/surf/xilinx/_GtRxAlignCheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,14 +159,14 @@ def __init__( self,
))

self.add(pr.RemoteVariable(
name = "PhaseCount",
name = "PhaseHistRaw",
description = "Timing frame phase",
offset = 0x00,
valueBits = 8,
valueStride = 8,
numValues = 40,
mode = "RO",
hidden = False,
hidden = True,
))

for i in range(40):
Expand All @@ -175,5 +175,5 @@ def __init__( self,
guiGroup='Hist',
disp = '{:d}',
mode = 'RO',
dependencies = [self.PhaseCount],
linkedGet = lambda read, x=i: self.PhaseCount.get(read=read, index=x)))
dependencies = [self.PhaseHistRaw],
linkedGet = lambda read, x=i: self.PhaseHistRaw.value(index=x)))

0 comments on commit 8cb35db

Please sign in to comment.