Hello @Asaf3425423
if you're not playing any audio, the output is idle.
You can try something like :
$ aplay -D default sine_1kHz.wav
NOTE: You should have a sine_1kHz.wav.
Also, you can make a Python script to generate 1kH:
import numpy as np
import sounddevice as sd
fs = 44100
f = 1000
duration = 5
t = np.linspace(0, duration, int(fs*duration), endpoint=False)
wave = 0.5 * np.sin(2 * np.pi * f * t)
sd.play(wave, samplerate=fs)
sd.wait()
NOTE: You must sure that you have installed numpy, sounddevice on python and libportaudio2 libportaudiocpp0 portaudio19-dev in your Yocto image.
Then, reproducing the audio you’ll see a clean sine wave.
I hope this information can helps to you.
Best regards,
Salas.