rpitx-app-note/README.md

92 wiersze
4.8 KiB
Markdown
Czysty Zwykły widok Historia

2015-11-08 13:38:47 +00:00
# Application note on using rpitx
## Using with csdr to modulate streaming input
You will need the *dev* branch of *csdr* for doing this.<br />
Setup instructions:
git clone https://github.com/simonyiszk/csdr.git
cd csdr
git fetch
git checkout dev
make && sudo make install
Note that it should be already done, if you installed *qtcsdr*.
### Modulate from raw audio file
2015-11-08 14:31:31 +00:00
These examples will use the raw audio file `music48000.raw` and `speech48000.raw`, which is present in this repo. You can get this file by:
2015-11-08 13:38:47 +00:00
2015-11-08 13:41:57 +00:00
git clone https://github.com/ha7ilm/rpitx-app-note
cd rpitx-app-note; ls #There is your file.
2015-11-08 13:38:47 +00:00
2015-11-08 14:41:19 +00:00
We will play these files in a loop, you can stop it with Ctrl+C.
2015-11-08 13:38:47 +00:00
2015-11-08 13:41:57 +00:00
**Generate AM modulation:**
2015-11-08 14:41:19 +00:00
(while true; do cat music48000.raw; done) | csdr convert_i16_f | csdr gain_ff 1.0 | csdr dsb_fc | csdr add_dcoffset_cc | sudo rpitx -i- -m IQFLOAT -f 28400
2015-11-08 13:38:47 +00:00
* The part `csdr gain_ff 1.0` can be changed to increase/decrease modulation.
* The `-f 28400` at the end gives the transmit frequency in kHz.
2015-11-08 14:31:31 +00:00
**Generate USB modulation:**
2015-11-08 13:38:47 +00:00
2015-11-08 14:41:19 +00:00
(while true; do cat speech48000.raw; done) | csdr convert_i16_f | csdr dsb_fc | csdr bandpass_fir_fft_cc 0 0.1 0.01 | csdr gain_ff 2.0 | csdr shift_addition_cc 0.2 | sudo rpitx -i- -m IQFLOAT -f 28400
2015-11-08 13:38:47 +00:00
2015-11-08 14:31:31 +00:00
**Generate LSB modulation:**
2015-11-08 14:41:19 +00:00
(while true; do cat speech48000.raw; done) | csdr convert_i16_f | csdr dsb_fc | csdr bandpass_fir_fft_cc -0.1 0 0.01 | csdr gain_ff 2.0 | csdr shift_addition_cc 0.2 | sudo rpitx -i- -m IQFLOAT -f 28400
2015-11-08 14:31:31 +00:00
* It's the matter of the filter which sideband do we select:
* `csdr bandpass_fir_fft_cc -0.1 0` is the lower sideband
* `csdr bandpass_fir_fft_cc 0 0.1` is the upper sideband
2015-11-08 14:36:25 +00:00
* I have experienced that if the SSB signal is in the center of the I/Q signal, then it is not transmitted correctly. The solution was to shift it. So the exact frequency should be around: `rpitx frequency + 48000*0.2 = rpitx frequency + 9600 Hz`
2015-11-08 14:31:31 +00:00
**Generate NFM modulation:**
2015-11-08 14:41:19 +00:00
(while true; do cat music48000.raw; done) | csdr convert_i16_f | csdr gain_ff 7000 | csdr convert_f_samplerf 20833 | sudo rpitx -i- -m RF -f 28400
2015-11-08 13:38:47 +00:00
2015-11-08 14:41:19 +00:00
**Generate WFM modulation:**
(while true; do cat music48000.raw; done) | csdr convert_i16_f | csdr gain_ff 70000 | csdr convert_f_samplerf 20833 | sudo rpitx -i- -m RF -f 28400
* Frequency deviation is set much higher with `csdr gain_ff 70000`, that's the only difference between this and NFM.
2015-11-08 14:49:09 +00:00
### Modulate from microphone input source
Use this if you have a microphone connected to the Raspberry Pi via external USB audio device.<br />
You will have to get the correct ALSA device ID via `arecord -L`, it will be something like `plughw:CARD=Device,DEV=0`. You should enter as the argument of the `-D` switch of `arecord`.
#AM:
arecord -c1 -r48000 -D plughw:CARD=Device,DEV=0 -fS16_LE - | csdr convert_i16_f | csdr gain_ff 1.0 | csdr dsb_fc | csdr add_dcoffset_cc | sudo rpitx -i- -m IQFLOAT -f 28400
#USB:
arecord -c1 -r48000 -D plughw:CARD=Device,DEV=0 -fS16_LE - | csdr convert_i16_f | csdr dsb_fc | csdr bandpass_fir_fft_cc 0 0.1 0.01 | csdr gain_ff 2.0 | csdr shift_addition_cc 0.2 | sudo rpitx -i- -m IQFLOAT -f 28400
#LSB:
arecord -c1 -r48000 -D plughw:CARD=Device,DEV=0 -fS16_LE - | csdr convert_i16_f | csdr dsb_fc | csdr bandpass_fir_fft_cc -0.1 0 0.01 | csdr gain_ff 2.0 | csdr shift_addition_cc 0.2 | sudo rpitx -i- -m IQFLOAT -f 28400
#NFM:
arecord -c1 -r48000 -D plughw:CARD=Device,DEV=0 -fS16_LE - | csdr convert_i16_f | csdr gain_ff 7000 | csdr convert_f_samplerf 20833 | sudo rpitx -i- -m RF -f 28400
#WFM:
arecord -c1 -r48000 -D plughw:CARD=Device,DEV=0 -fS16_LE - | csdr convert_i16_f | csdr gain_ff 70000 | csdr convert_f_samplerf 20833 | sudo rpitx -i- -m RF -f 28400
2015-11-08 14:54:52 +00:00
### Stream audio from remote computer
First, start the transmitter:
#AM:
nc -l 8011 | csdr convert_i16_f | csdr gain_ff 1.0 | csdr dsb_fc | csdr add_dcoffset_cc | sudo rpitx -i- -m IQFLOAT -f 28400
#USB:
nc -l 8011 | csdr convert_i16_f | csdr dsb_fc | csdr bandpass_fir_fft_cc 0 0.1 0.01 | csdr gain_ff 2.0 | csdr shift_addition_cc 0.2 | sudo rpitx -i- -m IQFLOAT -f 28400
#LSB:
nc -l 8011 | csdr convert_i16_f | csdr dsb_fc | csdr bandpass_fir_fft_cc -0.1 0 0.01 | csdr gain_ff 2.0 | csdr shift_addition_cc 0.2 | sudo rpitx -i- -m IQFLOAT -f 28400
#NFM:
nc -l 8011 | csdr convert_i16_f | csdr gain_ff 7000 | csdr convert_f_samplerf 20833 | sudo rpitx -i- -m RF -f 28400
#WFM:
nc -l 8011 | csdr convert_i16_f | csdr gain_ff 70000 | csdr convert_f_samplerf 20833 | sudo rpitx -i- -m RF -f 28400
The Raspberry Pi will listen on TCP port 8011, and wait for connection.
Then, on the remote computer, execute:
arecord -fS16_LE -r48000 -c1 - | nc raspberrypi.local 8011
You should replace `raspberrypi.local` with the IP address of the Raspberry Pi (unless avahi config is the default).