From cfbb703adc7684224d32f7d3635f8feabf523221 Mon Sep 17 00:00:00 2001 From: Benjamin Reese Date: Mon, 31 Jul 2023 15:51:08 -0700 Subject: [PATCH 1/2] Fix for rogue v6 compatibility --- python/surf/devices/microchip/_Axi24LC64FT.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/surf/devices/microchip/_Axi24LC64FT.py b/python/surf/devices/microchip/_Axi24LC64FT.py index 5d66a39306..c9fc0b53b3 100644 --- a/python/surf/devices/microchip/_Axi24LC64FT.py +++ b/python/surf/devices/microchip/_Axi24LC64FT.py @@ -31,7 +31,7 @@ def __init__(self, self.add(pr.RemoteVariable( name = "Mem", description = "Memory Array", - size = (4*nelms), + offset = 0x0000, numValues = nelms, valueBits = 32, valueStride = 32, From b8f69101f7174afbeb54c05d01cf51bc1d8195bd Mon Sep 17 00:00:00 2001 From: Larry Ruckman Date: Fri, 1 Sep 2023 08:31:59 -0700 Subject: [PATCH 2/2] (bulkOpEn=False) FALSE for large variables --- python/surf/devices/microchip/_Axi24LC64FT.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/surf/devices/microchip/_Axi24LC64FT.py b/python/surf/devices/microchip/_Axi24LC64FT.py index c9fc0b53b3..61ae10f49c 100644 --- a/python/surf/devices/microchip/_Axi24LC64FT.py +++ b/python/surf/devices/microchip/_Axi24LC64FT.py @@ -36,5 +36,5 @@ def __init__(self, valueBits = 32, valueStride = 32, bitSize = 32 * nelms, - # mode = "RO", + bulkOpEn = False, # FALSE for large variables, ))