/******************************************************************************* ################################################################################ # Copyright (c) [2017-2019] [Radisys] # # # # Licensed under the Apache License, Version 2.0 (the "License"); # # you may not use this file except in compliance with the License. # # You may obtain a copy of the License at # # # # http://www.apache.org/licenses/LICENSE-2.0 # # # # Unless required by applicable law or agreed to in writing, software # # distributed under the License is distributed on an "AS IS" BASIS, # # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # # See the License for the specific language governing permissions and # # limitations under the License. # ################################################################################ *******************************************************************************/ #include #include #include #include #include #include #include "cm_mem.h" #include "cm_math.h" #include "envopt.h" #include "envdep.h" #include "envind.h" #include "gen.h" #include "ssi.h" #include "cm5.h" #include "cm_tkns.h" #include "cm_mblk.h" #include "cm_llist.h" #include "cm_hash.h" #include "cm_lte.h" #include "cm_err.h" #include "cm_tpt.h" #include "cm.h" #include "gen.x" /* general */ #include "ssi.x" /* system services */ #include "cm_math.x" #include "cm_tpt.x" #include "cm_tkns.x" #include "cm_mblk.x" #include "cm_llist.x" #include "cm5.x" #include "cm_hash.x" #include "cm_lte.x" #include "cm_lib.x" /* 5G ORAN phy delay */ #define PHY_DELTA 2 /* SELECTORS */ #define ODU_SELECTOR_LC 0 #define ODU_SELECTOR_TC 1 #define ODU_SELECTOR_LWLC 2 #define CRNTI_START_RANGE 100 #define CRNTI_END_RANGE 500 #define GET_UE_IDX( _crnti,_ueIdx) \ { \ _ueIdx = _crnti - CRNTI_START_RANGE; \ } #define GET_CRNTI( _crnti,_ueIdx) \ { \ _crnti = _ueIdx + CRNTI_START_RANGE; \ } /********************************************************************** End of file **********************************************************************/