# 5G-NR-LDPC-CPP **Repository Path**: wirelesssun/5g-nr-ldpc-cpp ## Basic Information - **Project Name**: 5G-NR-LDPC-CPP - **Description**: 5G NR LDPC C++ 实现,包含基本流程和代码注释 - **Primary Language**: C++ - **License**: MulanPSL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2025-06-27 - **Last Updated**: 2025-06-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 5G-NR-LDPC 5G NR LDPC C++ implementation C++ 11 or newer version needed to run the examples and use the code. No additional package is used, only standard library. This implementation uses min-sum offset decoding algorithms, read `LDPC_decoder_help_doc.pdf` for detail. Any questions, eamil juquan.justin.mao@gmail.com ### Compiling issue * sprintf_s was not declared in this scope * please make sure c++ 11 or newer version used * refer to https://stackoverflow.com/questions/4828228/sprintf-s-was-not-declared-in-this-scope for more information # Compiling ``` $: mkdir build $: cd build $: cmake .. $: make $: ./ldpc ```