summaryrefslogtreecommitdiff
path: root/examples/device/audio_test_freertos/src/plot_audio_samples.py
diff options
context:
space:
mode:
authorhathach <[email protected]>2025-07-10 17:18:17 +0700
committerhathach <[email protected]>2025-07-10 17:18:17 +0700
commit77be5f96e48cd6810538173f2311a51592ecd17a (patch)
tree49283b92773740657b03f640f72ce5be8cb92d52 /examples/device/audio_test_freertos/src/plot_audio_samples.py
parentdee6b369235e3440f9237ae0e74f81edca95f6b7 (diff)
parent546e8413b5ed05a8c35b8dbe7792516a3cd631fa (diff)
Merge branch 'master' into fork/roma-jam/feature/add_tusb_teardown
Diffstat (limited to 'examples/device/audio_test_freertos/src/plot_audio_samples.py')
-rwxr-xr-xexamples/device/audio_test_freertos/src/plot_audio_samples.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/device/audio_test_freertos/src/plot_audio_samples.py b/examples/device/audio_test_freertos/src/plot_audio_samples.py
index 46738eb3f..b6d8e824b 100755
--- a/examples/device/audio_test_freertos/src/plot_audio_samples.py
+++ b/examples/device/audio_test_freertos/src/plot_audio_samples.py
@@ -11,11 +11,11 @@ if __name__ == '__main__':
# print(sd.query_devices())
fs = 48000 # Sample rate
- duration = 1000e-3 # Duration of recording
+ duration = 3 # Duration of recording
if platform.system() == 'Windows':
# MME is needed since there are more than one MicNode device APIs (at least in Windows)
- device = 'Microphone (MicNode) MME'
+ device = 'Microphone (MicNode), Windows WASAPI'
elif platform.system() == 'Darwin':
device = 'MicNode'
else: