Skip to content

Commit

Permalink
Changed more status registers from RO to RW
Browse files Browse the repository at this point in the history
  • Loading branch information
hsandber committed Oct 29, 2024
1 parent d49dfa9 commit b63d85f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions python/surf/protocols/i2c/_PMBus.py
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ def __init__(self, simpleDisplay = True, dynamicAddr=False, **kwargs):
name = 'STATUS_VOUT',
offset = (4*0x7A),
bitSize = 8,
mode = 'RO',
mode = 'RW',
hidden = simpleDisplay,
pollInterval = 1,
))
Expand All @@ -720,7 +720,7 @@ def __init__(self, simpleDisplay = True, dynamicAddr=False, **kwargs):
name = 'STATUS_IOUT',
offset = (4*0x7B),
bitSize = 8,
mode = 'RO',
mode = 'RW',
hidden = simpleDisplay,
pollInterval = 1,
))
Expand All @@ -729,7 +729,7 @@ def __init__(self, simpleDisplay = True, dynamicAddr=False, **kwargs):
name = 'STATUS_INPUT',
offset = (4*0x7C),
bitSize = 8,
mode = 'RO',
mode = 'RW',
hidden = simpleDisplay,
pollInterval = 1,
))
Expand All @@ -738,7 +738,7 @@ def __init__(self, simpleDisplay = True, dynamicAddr=False, **kwargs):
name = 'STATUS_TEMPERATURE',
offset = (4*0x7D),
bitSize = 8,
mode = 'RO',
mode = 'RW',
hidden = simpleDisplay,
pollInterval = 1,
))
Expand All @@ -747,7 +747,7 @@ def __init__(self, simpleDisplay = True, dynamicAddr=False, **kwargs):
name = 'STATUS_CML',
offset = (4*0x7E),
bitSize = 8,
mode = 'RO',
mode = 'RW',
hidden = simpleDisplay,
pollInterval = 1,
))
Expand All @@ -765,7 +765,7 @@ def __init__(self, simpleDisplay = True, dynamicAddr=False, **kwargs):
name = 'STATUS_MFR_SPECIFIC',
offset = (4*0x80),
bitSize = 8,
mode = 'RO',
mode = 'RW',
hidden = simpleDisplay,
pollInterval = 1,
))
Expand Down

0 comments on commit b63d85f

Please sign in to comment.