srsLTE/lib/include/srslte/phy/phch/uci_cfg_nr.h

43 lines
1.2 KiB
C
Raw Normal View History

2021-01-12 01:24:52 -08:00
/**
*
* \section COPYRIGHT
*
* Copyright 2013-2020 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.
*
*/
#ifndef SRSLTE_UCI_CFG_NR_H
#define SRSLTE_UCI_CFG_NR_H
#include "srslte/phy/common/phy_common.h"
2021-01-12 01:24:52 -08:00
#include <stdbool.h>
#include <stdint.h>
2021-01-19 06:25:18 -08:00
#define SRSLTE_UCI_NR_MAX_ACK_BITS 360
2021-01-12 01:24:52 -08:00
#define SRSLTE_UCI_NR_MAX_SR_BITS 10
#define SRSLTE_UCI_NR_MAX_CSI1_BITS 10
#define SRSLTE_UCI_NR_MAX_CSI2_BITS 10
typedef struct SRSLTE_API {
uint32_t o_ack; ///< Number of HARQ-ACK bits
uint32_t o_sr; ///< Number of SR bits
uint32_t o_csi1; ///< Number of CSI1 report number of bits
uint32_t o_csi2; ///< Number of CSI2 report number of bits
srslte_mod_t modulation; ///< Modulation
uint16_t rnti; ///< RNTI
2021-01-12 01:24:52 -08:00
} srslte_uci_cfg_nr_t;
typedef struct SRSLTE_API {
uint8_t ack[SRSLTE_UCI_NR_MAX_ACK_BITS];
uint8_t sr[SRSLTE_UCI_NR_MAX_SR_BITS];
uint8_t csi1[SRSLTE_UCI_NR_MAX_CSI1_BITS];
uint8_t csi2[SRSLTE_UCI_NR_MAX_CSI2_BITS];
bool valid;
} srslte_uci_value_nr_t;
#endif // SRSLTE_UCI_CFG_NR_H