Skip to content

Commit

Permalink
Fix block size
Browse files Browse the repository at this point in the history
  • Loading branch information
agustiner committed Apr 17, 2024
1 parent 4436cc9 commit c337915
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/surf/devices/ti/_Adc32Rf45Channel.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,10 @@ def __init__( self, verify=True, offset=0, **kwargs):
# Main Digital Page
###################
self.add(pr.RemoteVariable(name='MainDigital',
offset = mainDigital, # 0x0C000 - 0x0C1FF, 512 Bytes
offset = mainDigital, # 0x0C000 - 0x0C3FF, 1024 Bytes
base = pr.UInt,
bitOffset = 0,
numValues = 0x80,
numValues = 0x100,
valueBits = 32,
valueStride = 32,
updateNotify = False,
Expand Down

0 comments on commit c337915

Please sign in to comment.