I am new to GNU Radio and I'm trying to transmit a value using it and the USRP B210 board.
I used Matlab to convert the value 0.121
to wav format then convert the wav file to .dat file using audio_to_file
example in GNU Radio.
When I transmit the .dat
file using the B210 and GNU Radio, I received a wav file but when I read the wav using matlab function (audioread()
) I get a different value.
P.S.
Sample rate for the converted .dat file was 44100 Hz and 16 bits per sample.
The receiver and transmitter sampling rate is 400K Hz.
I used fm_tx4.py
example from the GNU Radio package for my transmitter.
I used uhd_nbfm_receiver.grc
for the receiver.