summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Nordby <jononor@gmail.com>2025-04-26 01:18:30 +0200
committerJon Nordby <jononor@gmail.com>2025-04-26 21:33:29 +0200
commit1c8497fa17f4c11e997641030d2e9c0f12e1b0bb (patch)
tree7173643077f8b8fd15ff0edfe39c00930e42b9ca
parentc6596c7463fde97728764318e12b79da98b16b6f (diff)
pdm2pcm: Default to 4 stages
-rw-r--r--tools/pdm2pcm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/pdm2pcm.py b/tools/pdm2pcm.py
index 4dfc5a4..6de36ce 100644
--- a/tools/pdm2pcm.py
+++ b/tools/pdm2pcm.py
@@ -75,7 +75,7 @@ def pdm_to_pcm(pdm_signal, decimation_factor=64, filter_type='fir', filter_kwarg
elif filter_type == 'cic':
# Use CIC filter
- defaults = dict(stages=3, delay=1)
+ defaults = dict(stages=4, delay=1)
kwargs = {}
kwargs.update(defaults)
kwargs.update(filter_kwargs)