Newer
Older
mbed-os / features / FEATURE_BLE / targets / TARGET_CORDIO_LL / stack / controller / sources / ble / lhci / lhci_init_conn_priv.c
@Paul Szczeanek Paul Szczeanek on 2 Jul 2020 1 KB update cordio LL files to 20.05r
/*************************************************************************************************/
/*!
 *  \file
 *
 *  \brief      Link layer (LL) Host Controller Interface (HCI) initialization implementation file.
 *
 *  Copyright (c) 2013-2018 Arm Ltd. All Rights Reserved.
 *
 *  Copyright (c) 2019-2020 Packetcraft, Inc.
 *  
 *  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 "lhci_int.h"

/*************************************************************************************************/
/*!
 *  \brief      Initialize LL HCI subsystem for privacy (connections).
 *
 *  This function initializes the LL HCI subsystem for LE Privacy 1.2.  It is typically
 *  called once upon system initialization.
 */
/*************************************************************************************************/
void LhciPrivConnInit(void)
{
  lhciCmdTbl[LHCI_MSG_PRIV] = lhciPrivConnDecodeCmdPkt;
  lhciEvtTbl[LHCI_MSG_PRIV] = lhciPrivConnEncodeEvtPkt;
}