2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-29 05:03:34 +08:00

dsp.fir: remove old/wrong comment

This commit is contained in:
Robert Jördens 2017-06-28 19:21:57 +02:00
parent 55b5b87490
commit b9859cc0c3

View File

@ -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)