1 minute read

RTL-SDR Test

Step1: Access to RTL-SDR.com Quick start guide

https://www.rtl-sdr.com/rtl-sdr-quick-start-guide/

RTL-SDR_Test1
Click on 설정
RTL-SDR_Test3 Navigate to USB
RTL-SDR_Test2
Search for more > Select Realtek RTL2838UHDIR [0100]
RTL-SDR_Test4
Press Ok > Press 시작(T)

Using rtl-sdr to Capture Radio Samples

The rtl-sdr code can be checked out with:

git clone https://gitea.osmocom.org/sdr/rtl-sdr.git

RTL-SDR_Test5

cd rtl-sdr/
mkdir build
cd build
cmake ../
make
sudo make install
sudo ldconfig

install development packages for libusb1.0 and can either use cmake or autotools to build the software.
Building with cmake:

cmake ../ -DINSTALL_UDEV_RULES=ON
cd rtl-sdr/
autoreconf -i
./configure
make
sudo make install
sudo ldconfig
sudo make install-udev-rules

Using rtl-sdr to Capture Radio Samples

mkdir grc_files/
cd grc_files/
gnuradio-companion 
#Tab
gnuradio-companion fm_receiver_test.grc

Filter Technique

FIR Filter
Filter tab 갯수가 30개 ~ 300개 갯수 커짐
IIR Filter
수학적 관점에서 feedback
분모가 0
Filtering이 확 틀어질 수 있는 가능성이 있음
=> 통신 기법에서 FIR filter를 가장 많이 씀
FIR Filter는 대체로 시킴
빛 level sampling , filtering에 있어서 IIR filter는 좋은 선택지인게 의문
filter 돌리면 외부 signal은 일부 제거
잔상이 남음

Audio Application Example

우리가 가지고 있는 음악 파일
노이즈. 잡다한게 많이 낌 음악 파일내 노이즈 제거하려면?
우리가 보려는 음악 영역대는 0~5000

transition region passband 크게, fr 갯수가 몇 1000개!
fs: sampling rate
cutoff: 어디쯤이 설정 freq
좌, 우 filtering butter_lowpass_filter
어느 정도 여유를 가지면서 ~

Matched Filter

Matched Filter는 최대 신호 세기로 해서 복구 시키겠다
Matched Filter
=> 어려움
HackRF

cd grc_files/
gnuradio-companion 
#Tab
gnuradio-companion direct_view.grc

grc file > Directive View
Waterfall
빨간색: 블루투스 signal
중간에 Low Pass filter 연결하기
100Khz
1khz

Double click connection connecting Oscom source
Drag and drop oscom filter

RX TX
Hack RF 하나 수신용, 송신용
USRP N210, USRP B series 좋음
Link:
https://engineering.purdue.edu/VISE/ee438L/

Updated: