diff options
Diffstat (limited to 'dpd/src/Symbol_align.py')
-rw-r--r-- | dpd/src/Symbol_align.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dpd/src/Symbol_align.py b/dpd/src/Symbol_align.py index 2f871bc..c9ae239 100644 --- a/dpd/src/Symbol_align.py +++ b/dpd/src/Symbol_align.py @@ -26,8 +26,8 @@ class Symbol_align: Find the phase offset to the start of the DAB symbols in an unaligned dab signal. """ - def __init__(self, sample_rate, plot=False): - self.c = src.const.const(sample_rate) + def __init__(self, c, plot=False): + self.c = c self.plot = plot pass |