Skip to content

Commit

Permalink
hiding 'advance debugging' registers in the GUI
Browse files Browse the repository at this point in the history
  • Loading branch information
ruck314 committed Mar 26, 2024
1 parent 09d2689 commit 8db6a88
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions python/surf/xilinx/_AxiPciePhy.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ def __init__(
bitSize = 16,
bitOffset = 0,
mode = 'RO',
hidden = True,
))

self.add(pr.RemoteVariable(
Expand All @@ -55,6 +56,7 @@ def __init__(
bitSize = 16,
bitOffset = 16,
mode = 'RO',
hidden = True,
))

self.add(pr.RemoteVariable(
Expand All @@ -63,6 +65,7 @@ def __init__(
bitSize = 8,
bitOffset = 0,
mode = 'RO',
hidden = True,
))

self.add(pr.RemoteVariable(
Expand All @@ -71,6 +74,7 @@ def __init__(
bitSize = 8,
bitOffset = 8,
mode = 'RO',
hidden = True,
))

self.add(pr.RemoteVariable(
Expand All @@ -79,6 +83,7 @@ def __init__(
bitSize = 8,
bitOffset = 16,
mode = 'RO',
hidden = True,
))

self.add(pr.RemoteVariable(
Expand All @@ -87,6 +92,7 @@ def __init__(
bitSize = 8,
bitOffset = 24,
mode = 'RO',
hidden = True,
))

self.add(pr.RemoteVariable(
Expand All @@ -95,6 +101,7 @@ def __init__(
bitSize = 8,
bitOffset = 0,
mode = 'RO',
hidden = True,
))

self.add(pr.RemoteVariable(
Expand All @@ -103,6 +110,7 @@ def __init__(
bitSize = 8,
bitOffset = 8,
mode = 'RO',
hidden = True,
))

self.add(pr.RemoteVariable(
Expand All @@ -111,6 +119,7 @@ def __init__(
bitSize = 8,
bitOffset = 16,
mode = 'RO',
hidden = True,
))

self.add(pr.RemoteVariable(
Expand All @@ -119,6 +128,7 @@ def __init__(
bitSize = 8,
bitOffset = 24,
mode = 'RO',
hidden = True,
))

for i in range(6):
Expand All @@ -128,6 +138,7 @@ def __init__(
bitSize = 32,
bitOffset = 0,
mode = 'RO',
hidden = (i!=0),
))

self.add(pr.RemoteVariable(
Expand All @@ -136,6 +147,7 @@ def __init__(
bitSize = 32,
bitOffset = 0,
mode = 'RO',
hidden = True,
))

self.add(pr.RemoteVariable(
Expand All @@ -160,6 +172,7 @@ def __init__(
bitSize = 32,
bitOffset = 0,
mode = 'RO',
hidden = True,
))

self.add(pr.RemoteVariable(
Expand All @@ -168,6 +181,7 @@ def __init__(
bitSize = 8,
bitOffset = 0,
mode = 'RO',
hidden = True,
))

self.add(pr.RemoteVariable(
Expand All @@ -176,6 +190,7 @@ def __init__(
bitSize = 8,
bitOffset = 0,
mode = 'RO',
hidden = True,
))

self.add(pr.RemoteVariable(
Expand All @@ -184,6 +199,7 @@ def __init__(
bitSize = 8,
bitOffset = 8,
mode = 'RO',
hidden = True,
))

self.add(pr.RemoteVariable(
Expand All @@ -192,6 +208,7 @@ def __init__(
bitSize = 8,
bitOffset = 16,
mode = 'RO',
hidden = True,
))

self.add(pr.RemoteVariable(
Expand All @@ -200,6 +217,7 @@ def __init__(
bitSize = 8,
bitOffset = 24,
mode = 'RO',
hidden = True,
))

self.addRemoteVariables(
Expand Down

0 comments on commit 8db6a88

Please sign in to comment.