2 releases
new 0.1.1 | Dec 17, 2024 |
---|---|
0.1.0 | Jan 23, 2024 |
#703 in Algorithms
89 downloads per month
Used in 2 crates
(via ccsds)
29KB
516 lines
rs2
Reed-Solomon FEC for CCSDS downlink decoding
License
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (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.
lib.rs
:
Reed-Solomon Forward Error Correction for spacecraft data conforming to CCSDS TM SYNCHRONIZATION AND CHANNEL CODING (131.0-B-5.
This is only intended to perform RS as documented in the CCSDS document linked above. It is not a general purpose Reed-Solomon FEC implementation.
This has been ported and adopted from the Python code found in the excelent article Reed-Solomon Codes for Coders.