diff options
Diffstat (limited to 'src/dev/CopyEngine.py')
-rw-r--r-- | src/dev/CopyEngine.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dev/CopyEngine.py b/src/dev/CopyEngine.py index b89486be8..9aa0e1fe5 100644 --- a/src/dev/CopyEngine.py +++ b/src/dev/CopyEngine.py @@ -52,8 +52,8 @@ class CopyEngine(PciDevice): ChanCnt = Param.UInt8(4, "Number of DMA channels that exist on device") XferCap = Param.MemorySize('4kB', "Number of bits of transfer size that are supported") - - clock = Param.Clock('500MHz', "Clock speed of the device") + # Override the default clock + clock = '500MHz' latBeforeBegin = Param.Latency('20ns', "Latency after a DMA command is seen before it's proccessed") latAfterCompletion = Param.Latency('20ns', "Latency after a DMA command is complete before it's reported as such") |