forked from hnez/XFDMSync
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit updates the documentation of all relevant blocks. Further, the copyright information is updated as well. Finally, some unused, untested blocks are removed. Signed-off-by: Johannes Demel <[email protected]>
- Loading branch information
Showing
35 changed files
with
178 additions
and
631 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,6 @@ | ||
name: Check Formatting | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- 'swig/' | ||
pull_request: | ||
paths-ignore: | ||
- 'swig/' | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
check-cpp-formatting: | ||
|
@@ -27,4 +21,4 @@ jobs: | |
- uses: actions/[email protected] | ||
- uses: quentinguidee/pep8-action@v1 | ||
with: | ||
arguments: '--max-line-length=120 --ignore E203,E265,E266,E402,E501,E704,E712,E713,E714,E711,E722,E741,W503,W504,W605 --exclude *.yml.py' | ||
arguments: '--max-line-length=120 --ignore E203,E265,E266,E402,E501,E704,E712,E713,E714,E711,E722,E741,W503,W504,W605 --exclude *.yml.py' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,46 @@ | ||
/*! \mainpage | ||
|
||
Welcome to the GNU Radio XFDM_SYNC Block | ||
# Introduction | ||
|
||
This is the intro page for the Doxygen manual generated for the XFDM_SYNC | ||
block (docs/doxygen/other/main_page.dox). Edit it to add more detailed | ||
documentation about the new GNU Radio modules contained in this | ||
project. | ||
The XFDMSync [GNU Radio OOT module](https://wiki.gnuradio.org/index.php/OutOfTreeModules) provides optimized blocks for multicarrier synchronization. | ||
During development, the main targets for multicarrier systems are [OFDM](https://en.wikipedia.org/wiki/Orthogonal_frequency-division_multiplexing) and [GFDM](https://en.wikipedia.org/wiki/Non-orthogonal_frequency-division_multiplexing#Generalized_frequency_division_multiplexing_(GFDM)). | ||
Algorithmically, the module relies on an improved Schmidl&Cox algorithm according to Awoseyila. | ||
|
||
This module provides optimized blocks to compute preamble-based synchronization and stream synchronization for multiple antenna setups. | ||
|
||
## Usage | ||
|
||
After installation, the module can be imported like any other GNU Radio OOT module with | ||
\code | ||
import xfdm_sync | ||
\endcode | ||
|
||
See the Doxygen documentation for details about the blocks available | ||
in this package. | ||
|
||
A quick listing of the details can be found in Python after importing | ||
by using: | ||
|
||
\code | ||
help(xfdm_sync) | ||
\endcode | ||
|
||
## Blocks | ||
|
||
This OOT module provides the following blocks | ||
|
||
- Frame gate gr::xfdm_sync::frame_gate | ||
- Multi port synchronization: A hierachical Python block for multiple antenna stream synchronization. | ||
- Schmidl and Cox correlator gr::xfdm_sync::sc_delay_corr | ||
- Schmidl and Cox tagger gr::xfdm_sync::sc_tagger | ||
- Synchronization: A hierachical Python block for one antenna stream synchronization. | ||
- Tag align gr::xfdm_sync::sync_tag_align_cc | ||
- Cross-correlation tagger gr::xfdm_sync::xcorr_tagger | ||
|
||
## References | ||
|
||
* Awoseyila A, Kasparis C, Evans B: [Improved preamble-aided timing estimation for OFDM systems](https://ieeexplore.ieee.org/document/4717982). IEEE Commun. Lett 2008, 12(11):825-827, [DOI: 10.1109/LCOMM.2008.081054](https://doi.org/10.1109/LCOMM.2008.081054) | ||
|
||
* Gaspar, I.S., Mendes, L.L., Michailow, N. et al. [A synchronization technique for generalized frequency division multiplexing](https://doi.org/10.1186/1687-6180-2014-67). EURASIP J. Adv. Signal Process. (2014) 2014: 67. [DOI: 10.1186/1687-6180-2014-67](https://doi.org/10.1186/1687-6180-2014-67) | ||
|
||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
*.py | ||
*.svg |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.