NR RRC - Remove unnecessary structs

parent 1d7a1f69
......@@ -21,12 +21,6 @@
#include "rrc_gNB_drbs.h"
typedef struct {
nr_ue_t *list; /* UE Linked List, every element is a UE*/
} nr_ue_list_t;
static nr_ue_list_t ues;
NR_DRB_ToAddMod_t *generateDRB(gNB_RRC_UE_t *ue,
const pdu_session_param_t *pduSession,
bool enable_sdap,
......
......@@ -31,20 +31,6 @@
#define DRB_ACTIVE (1)
#define DRB_INACTIVE (0)
typedef struct nr_pdus_s {
uint8_t pdu_drbs[MAX_DRBS_PER_PDUSESSION]; /* Data Radio Bearers of PDU Session */
uint8_t pdusession_id;
uint8_t drbs_established; /* Max value -> MAX_DRBS_PER_PDUSESSION*/
} nr_pdus_t;
typedef struct nr_ue_s {
nr_pdus_t pdus[MAX_PDUS_PER_UE]; /* PDU Sessions */
uint8_t used_drbs[MAX_DRBS_PER_UE]; /* Data Radio Bearers of UE, the value is not the drb_id but the pdusession_id */
rnti_t ue_id;
struct nr_ue_s *next_ue;
} nr_ue_t;
NR_DRB_ToAddMod_t *generateDRB(gNB_RRC_UE_t *rrc_ue,
const pdu_session_param_t *pduSession,
bool enable_sdap,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment