GNU Radio gr-dvbs2实验

本文内容、开发板及配件仅限用于学校或科研院所开展科研实验!

温馨提示:“开源SDR实验室”是北京的。

本文介绍Ubuntu下安装gr-dvbs2方法、安装过程中可能碰到的问题及解决方法

 

目录

一、DVB简介

二、gr-dvbs2安装方法

三、可能碰到的问题

四、联系方式


一、DVB简介

关于DVB的简介可以查看我的博客。

https://blog.csdn.net/OpenSourceSDR/article/details/106227482

二、gr-dvbs2安装方法

gr-dvbs2的github链接为:

https://github.com/drmpeg/gr-dvbs2

The goal of this project is to build a software-defined DVB-S2 transmitter, based on the EN 302 307 V1.3.1 Second Generation framing structure, channel coding and modulation systems for Broadcasting, Interactive Services, New Gathering and other broadband satellite applications standard:

A gnuradio-companion flowgraph (dvbs2_tx.grc) for the bladeRF and Ettus B2xx transmit capable SDR's is included.

由于gr-dvbs2目前最新版本已更新支持GNU Radio3.9版本,所以如果你的GNU Radio是3.7或者3.8版本,你需要在【Branches】这里选择相应的版本,然后点击【Download ZIP】下载。例如,我这里GNU Radio版本是3.8,选择下载的是maint-3.8版本。

下载并解压后,进入gr-dvbs2-maint-3.8文件夹之后,依次执行以下命令即可完成将gr-dvbs2模块安装到GNU Radio的GRC中。

mkdir build
cd build
cmake ../
make
sudo make install
sudo ldconfig

三、可能碰到的问题

如果你的Ubuntu中没有安装pcap模块,可能会碰到以下问题(Could not find pcap):

解决方法是安装libpcap-dev。

安装完之后,重新执行cmake命令即可通过。

四、联系方式

猜你喜欢

转载自blog.csdn.net/OpenSourceSDR/article/details/107627069
GNU