Maxim Integrated / MaximBLE

Dependents:   BLE_Thermometer MAXWSNENV_demo

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers hci_vs.h Source File

hci_vs.h

00001 /*************************************************************************************************/
00002 /*!
00003  *  \file   hci_drv.h
00004  *
00005  *  \brief  HCI vendor specific functions for EM Microelectronic.
00006  *
00007  *          $Date: 2013-01-02 22:19:17 -0800 (Wed, 02 Jan 2013) $
00008  *          $Revision: 405 $
00009  *
00010  *  Copyright (c) 2012-2016 ARM Limited. All rights reserved.
00011  *
00012  *  SPDX-License-Identifier: LicenseRef-PBL
00013  *
00014  *  Licensed under the Permissive Binary License, Version 1.0 (the "License"); you may not use
00015  *  this file except in compliance with the License.  You may obtain a copy of the License at
00016  *
00017  *  https://www.mbed.com/licenses/PBL-1.0
00018  *
00019  *  See the License for the specific language governing permissions and limitations under the License.
00020  */
00021 /*************************************************************************************************/
00022 #ifndef HCI_VS_H
00023 #define HCI_VS_H
00024 
00025 #ifdef __cplusplus
00026 extern "C" {
00027 #endif
00028 
00029 /*************************************************************************************************/
00030 /*!
00031  *  \fn     HciVsSetPublicAddr
00032  *        
00033  *  \brief  Vendor-specific set public address function.
00034  *
00035  *  \param  param    public address
00036  *
00037  *  \return None.
00038  */
00039 /*************************************************************************************************/
00040 void HciVsSetPublicAddr(uint8_t *bdAddr);
00041 
00042 /*************************************************************************************************/
00043 /*!
00044  *  \fn     HciVsSetTxPower
00045  *        
00046  *  \brief  Vendor-specific set RF output power function
00047  *
00048  *  \param  param    output power in dB
00049  *
00050  *  \return None.
00051  */
00052 /*************************************************************************************************/
00053 void HciVsSetTxPower(int txPower);
00054 
00055 #ifdef __cplusplus
00056 };
00057 #endif
00058 
00059 #endif /* HCI_VS_H */