SIB1 optional parameters, Cell start request, stop request and slot indication
[o-du/l2.git] / src / 5gnrmac / mac_upr_inf_api.c
1 /*******************************************************************************
2 ################################################################################
3 #   Copyright (c) [2017-2019] [Radisys]                                        #
4 #                                                                              #
5 #   Licensed under the Apache License, Version 2.0 (the "License");            #
6 #   you may not use this file except in compliance with the License.           #
7 #   You may obtain a copy of the License at                                    #
8 #                                                                              #
9 #       http://www.apache.org/licenses/LICENSE-2.0                             #
10 #                                                                              #
11 #   Unless required by applicable law or agreed to in writing, software        #
12 #   distributed under the License is distributed on an "AS IS" BASIS,          #
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
14 #   See the License for the specific language governing permissions and        #
15 #   limitations under the License.                                             #
16 ################################################################################
17 *******************************************************************************/
18
19 /* This file contains the definitions for Upper Interface APIs that are
20  * invoked from MAC */
21
22 #include "mac_upr_inf_api.h"
23
24 /* Funtion pointer options for slot indication */
25 DuMacSlotInd packMacSlotIndOpts[] =
26 {
27    packMacSlotInd,
28    duHandleSlotInd,
29    packMacSlotInd
30 };
31
32 /*******************************************************************
33  *
34  * @brief Send slot indication to MAC
35  *
36  * @details
37  *
38  *    Function : MacDuAppSlotInd
39  *
40  *    Functionality:
41  *       Select appropriate function using selector value and
42  *       send to MAC
43  *
44  * @params[in]  Post structure pointer
45  *              Slot info pointer 
46  * @return ROK     - success
47  *         RFAILED - failure
48  *
49  * ****************************************************************/
50 uint16_t MacDuAppSlotInd(Pst *pst, SlotInfo *slotInfo)
51 {
52    return (*packMacSlotIndOpts[pst->selector])(pst, slotInfo);
53 }
54
55 /**********************************************************************
56          End of file
57 **********************************************************************/
58