Merge pull request #12 from xobs/default-length

analyzer-driver: use default depth from config
This commit is contained in:
enjoy-digital 2018-09-13 14:38:56 +02:00 committed by GitHub
commit 686db4f3cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -91,7 +91,9 @@ class LiteScopeAnalyzerDriver:
def configure_subsampler(self, value):
self.subsampler_value.write(value-1)
def run(self, offset, length):
def run(self, offset = 0, length = None):
if length is None:
length = self.depth
assert offset < self.depth
assert length <= self.depth
if self.debug: