https://github.com/rmja/fastfec
Fast forward error correction algorithms
https://github.com/rmja/fastfec
Last synced: about 1 year ago
JSON representation
Fast forward error correction algorithms
- Host: GitHub
- URL: https://github.com/rmja/fastfec
- Owner: rmja
- Created: 2022-12-09T08:46:36.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-02-11T15:11:39.000Z (over 1 year ago)
- Last Synced: 2025-03-24T02:20:16.525Z (over 1 year ago)
- Language: Rust
- Size: 72.3 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# fastfec
Fast implmentation of various forward error correction algorithms optimized for embedded systems.
The crate contains:
* A Convolutional encoder and BCJR decoder.
* A Turbo encoder and decoder.
* An iterative QPP interleaver, with parameters from `3GPP`.
* Rate matching puncturer.
* An 8-state BCJR `3GPP` decoder, parallelized using the `SIMD` instructions.
## Usage
Add the crate to your `Cargo.toml` dependencies:
```toml
[dependencies]
fastfec = { git = "https://github.com/rmja/fastfec" }
```
## References
There are a series of references that are needed to understand the code in this repository:
* [_Implementation of 3GPP LTE QPP Interleaver for SiLago_](ref/qpp.pdf) by Spandan Dey
* [_Turbo Codes in UMTS/WiMAX/LTE Systems: Solutions for an Efficient FPGA Implementation_](ref/bcjr.pdf) by Christian ANGHEL
* [_From BCJR to Turbo decoding: MAP algorithms made easier_](ref/turbo.pdf) by Silvio A. Abrantes
## License
Licensed under either of
* Apache License, Version 2.0
([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
* MIT license
([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
at your option.
## Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.