summaryrefslogtreecommitdiff
path: root/tools/pcm2pdm.py
diff options
context:
space:
mode:
authorJon Nordby <jononor@gmail.com>2025-04-18 01:58:15 +0200
committerMartin StensgÄrd <mastensg@mastensg.net>2025-04-18 16:12:03 +0200
commitdf870d193c3ca6552ae85307abbb9f998228a776 (patch)
tree1b4b4f3dc3da8a63751f2a9f8d978c8c4f0d6eab /tools/pcm2pdm.py
parent61d9a812d1ab7c62b0e76903fb55a8c4d180298b (diff)
tools: Fixup PDM reference conversion
Seems to agree pretty well with itself now PDM bitstream also looks plausible for a sinewave
Diffstat (limited to 'tools/pcm2pdm.py')
-rw-r--r--tools/pcm2pdm.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/pcm2pdm.py b/tools/pcm2pdm.py
index f04f2ba..3a1fac6 100644
--- a/tools/pcm2pdm.py
+++ b/tools/pcm2pdm.py
@@ -69,6 +69,7 @@ def main():
with open(out_path, 'wb') as f:
save_pdm_bin(pdm_data, f)
+ print('Wrote', out_path)
if __name__ == '__main__':
main()