编译安装gr-satellites

gr-satellites是一个用于进行卫星遥测信息解调的开源软件,进行该软件的安装需要从源代码进行编译,具体过程如下:

1、安装gnuradio
该过程在其他文档中已经进行了详细描述,这里不再赘述。
2、安装libfec
该软件是一个前向纠错编码译码的开源软件
git clone https://github.com/daniestevez/libfec
./configure
make
make test
sudo make install
3、安装construct
该软件是一个进行二进制数据流解码的开源软件
切换到root用户
sudo su
然后开始安装
pip install construct
4、编译安装gr-satellites
git clone https://github.com/daniestevez/gr-satellites
mkdir build
cd build
cmake …
make
sudo make install
sudo ldconfig
5、在gnuradio的目录下包含安装的grc模块
cd ~/.gnuradio
vi config.conf
将以下内容拷贝在文件中进行保存退出
[grc]
local_blocks_path=/usr/local/share/gnuradio/grc/blocks

你可能感兴趣的:(编译安装gr-satellites)