/** * * \section COPYRIGHT * * Copyright 2013-2021 Software Radio Systems Limited * * By using this file, you agree to the terms and conditions set * forth in the LICENSE file which can be found at the top level of * the distribution. * */ /****************************************************************************** * File: modem_table.h * * Description: Modem tables used for modulation/demodulation. * Supports BPSK, QPSK, 16QAM and 64QAM. * * Reference: 3GPP TS 36.211 version 10.0.0 Release 10 Sec. 7.1 *****************************************************************************/ #ifndef SRSRAN_MODEM_TABLE_H #define SRSRAN_MODEM_TABLE_H #include #include #include "srsran/config.h" #include "srsran/phy/common/phy_common.h" typedef struct { cf_t symbol[8]; } bpsk_packed_t; typedef struct { cf_t symbol[4]; } qpsk_packed_t; typedef struct { cf_t symbol[2]; } qam16_packed_t; typedef struct SRSRAN_API { cf_t* symbol_table; // bit-to-symbol mapping uint32_t nsymbols; // number of modulation symbols uint32_t nbits_x_symbol; // number of bits per symbol bool byte_tables_init; bpsk_packed_t* symbol_table_bpsk; qpsk_packed_t* symbol_table_qpsk; qam16_packed_t* symbol_table_16qam; } srsran_modem_table_t; SRSRAN_API void srsran_modem_table_init(srsran_modem_table_t* q); SRSRAN_API void srsran_modem_table_free(srsran_modem_table_t* q); SRSRAN_API void srsran_modem_table_reset(srsran_modem_table_t* q); SRSRAN_API int srsran_modem_table_set(srsran_modem_table_t* q, cf_t* table, uint32_t nsymbols, uint32_t nbits_x_symbol); SRSRAN_API int srsran_modem_table_lte(srsran_modem_table_t* q, srsran_mod_t modulation); SRSRAN_API void srsran_modem_table_bytes(srsran_modem_table_t* q); #endif // SRSRAN_MODEM_TABLE_H