gr-dvbs2-master

所属分类:网络
开发工具:C/C++
文件大小:268KB
下载次数:7
上传日期:2018-04-28 16:43:06
上 传 者
说明:  基于EN 302 307 V1.3.1第二代成帧结构,信道编码和调制系统,用于广播、交互服务、新的收集和其他宽带卫星应用标准,建立一个软件定义的DVB-S2发射机
(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.)

文件列表:
CMakeLists.txt (5874, 2016-10-24)
COPYING (35147, 2016-10-24)
MANIFEST.md (840, 2016-10-24)
apps (0, 2016-10-24)
apps\CMakeLists.txt (852, 2016-10-24)
apps\dvbs2-blade.py (10968, 2016-10-24)
apps\dvbs2_tx.grc (62478, 2016-10-24)
apps\dvbs2_tx.py (10429, 2016-10-24)
cmake (0, 2016-10-24)
cmake\Modules (0, 2016-10-24)
cmake\Modules\CMakeParseArgumentsCopy.cmake (5891, 2016-10-24)
cmake\Modules\FindCppUnit.cmake (971, 2016-10-24)
cmake\Modules\FindGnuradioRuntime.cmake (1149, 2016-10-24)
cmake\Modules\GrMiscUtils.cmake (8698, 2016-10-24)
cmake\Modules\GrPlatform.cmake (1675, 2016-10-24)
cmake\Modules\GrPython.cmake (9179, 2016-10-24)
cmake\Modules\GrSwig.cmake (8679, 2016-10-24)
cmake\Modules\GrTest.cmake (5570, 2016-10-24)
cmake\Modules\dvbs2Config.cmake (746, 2016-10-24)
cmake\cmake_uninstall.cmake.in (1370, 2016-10-24)
docs (0, 2016-10-24)
docs\CMakeLists.txt (1385, 2016-10-24)
docs\doxygen (0, 2016-10-24)
docs\doxygen\CMakeLists.txt (2013, 2016-10-24)
docs\doxygen\Doxyfile.in (62980, 2016-10-24)
docs\doxygen\Doxyfile.swig_doc.in (63375, 2016-10-24)
docs\doxygen\doxyxml (0, 2016-10-24)
docs\doxygen\doxyxml\__init__.py (2474, 2016-10-24)
docs\doxygen\doxyxml\base.py (6794, 2016-10-24)
docs\doxygen\doxyxml\doxyindex.py (6551, 2016-10-24)
docs\doxygen\doxyxml\generated (0, 2016-10-24)
docs\doxygen\doxyxml\generated\__init__.py (235, 2016-10-24)
docs\doxygen\doxyxml\generated\compound.py (20296, 2016-10-24)
docs\doxygen\doxyxml\generated\compoundsuper.py (359948, 2016-10-24)
docs\doxygen\doxyxml\generated\index.py (1871, 2016-10-24)
docs\doxygen\doxyxml\generated\indexsuper.py (19286, 2016-10-24)
docs\doxygen\doxyxml\text.py (1832, 2016-10-24)
... ...

******** NOTICE ******** As of release 3.7.7, gr-dvbs2 is now part of GNU Radio in the gr-dtv component and the Digital Television category of gnuradio-companion. However, for those that prefer forking and developing in a OOT module, all the changes in GNU Radio have been backported to gr-dvbs2. # Copyright 2014,2016 Ron Economos # # This file is part of gr-dvbs2 # # gr-dvbs2 is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # gr-dvbs2 is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with gr-dvbs2; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. gr-dvbs2 ====== Author: Ron Economos Email: 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: http://www.etsi.org/deliver/etsi_en/302300_302399/302307/01.03.01_60/en_302307v010301p.pdf The baseband framing, baseband scrambling, LDPC (low density parity check), BCH (Bose, Chaudhuri, Hocquenghem), bit interleaver and physical layer framing and scrambling blocks are from G4GUO's DATV-Express Digital Amateur Television project datvexpress_gui (https://github.com/G4GUO/datvexpress_gui/tree/master/DVB-S2) and converted to GnuRadio 3.7.x. A gnuradio-companion flowgraph (dvbs2_tx.grc) for the bladeRF transmit capable SDR is included along with a stand-alone Python script for bladeRF (dvbs2-blade.py). A test Transport Stream that matches the example applications symbol rate, constellation and code rate can be downloaded here: http://www.w6rz.net/adv16apsk910.ts A DVB-S2 and DVB-S2X Transport Stream bit-rate calculator: https://github.com/drmpeg/dtv-utils/blob/master/dvbs2rate.c Note: This implementation supports the following DVB-S2 System configurations: 1) QPSK 1/4, 1/3, 2/5 2) QPSK 1/2, 3/5, 2/3, 3/4, 4/5, 5/6, 8/9, 9/10 3) 8PSK 3/5, 2/3, 3/4, 5/6, 8/9, 9/10 4) 16APSK 2/3, 3/4, 4/5, 5/6, 8/9, 9/10 5) 32APSK 3/4, 4/5, 5/6, 8/9, 9/10 6) CCM (Constant Coding and Modulation) 7) FECFRAME normal ***,800 bits 8) FECFRAME short 16,200 bits 9) Single Transport Stream 10) Roll-off 0.35, 0.25 and 0.20 System configurations not supported are: 1) VCM (Variable Coding and Modulation) 2) ACM (Adaptive Coding and Modulation) 3) Multiple Transport Streams 4) Single Generic Stream 5) Multiple Generic Streams 6) Input Stream Synchronizer 7) Null Packet Detection 8) Dummy Frame Insertion 9) Wide-band mode Note: DVB-S2X Broadcast services MODCOD's have been tested as of September 2016 with the Silicon Labs Si2183 demodulator. VL-SNR modes have been implemented, but are still untested. For DVB-S2X, optional Broadcast services configurations supported are ***APSK and ***APSK-L. 128APSK, 256APSK and 256APSK-L constellations are included for experimentation. https://www.dvb.org/resources/public/standards/a83-2_dvb-s2x_den302307-2.pdf Build instructions: mkdir build cd build cmake ../ make sudo make install sudo ldconfig Contributions are welcome!

近期下载者

相关文件


收藏者