Fixes for SIB1 transmission and FAPI STOP.request [Issue-ID: ODUHIGH-325]
[o-du/l2.git] / src / 5gnrmac / mac.h
index e64cba2..5630501 100644 (file)
 
 typedef struct macCellCb MacCellCb;
 
+typedef enum
+{
+   CELL_STATE_UP,
+   CELL_STATE_DELETION_IN_PROGRESS,
+   CELL_STATE_DOWN
+}CellState;       
+
 typedef enum
 {
    UE_STATE_INACTIVE,
@@ -179,6 +186,7 @@ typedef struct macUeCb
 struct macCellCb
 {
    uint16_t    cellId;
+   CellState   state;
    uint8_t     crntiMap;
    MacRaCbInfo macRaCb[MAX_NUM_UE];
    MacDlSlot   dlSlot[MAX_SLOTS];