From b9859cc0c31a2d66340424b815a4375b022492f7 Mon Sep 17 00:00:00 2001 From: Robert Jordens Date: Wed, 28 Jun 2017 19:21:57 +0200 Subject: [PATCH] dsp.fir: remove old/wrong comment --- artiq/gateware/dsp/fir.py | 1 - 1 file changed, 1 deletion(-) diff --git a/artiq/gateware/dsp/fir.py b/artiq/gateware/dsp/fir.py index 2a6a462d5..89616d7c1 100644 --- a/artiq/gateware/dsp/fir.py +++ b/artiq/gateware/dsp/fir.py @@ -71,7 +71,6 @@ class ParallelFIR(Module): self.i = [Signal((width, True)) for i in range(p)] self.o = [Signal((width, True)) for i in range(p)] self.latency = (n + 1)//2//p + 2 - # ... plus one sample w = _widths[arch] c_max = max(abs(c) for c in coefficients)