Maxim Integrated / MaximBLE

Dependents:   BLE_Thermometer MAXWSNENV_demo

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers cfg_stack.h Source File

cfg_stack.h

Go to the documentation of this file.
00001 /*************************************************************************************************/
00002 /*!
00003  *  \file   cfg_stack.h
00004  *
00005  *  \brief  Stack configuration.
00006  *
00007  *          $Date: 2011-10-14 21:35:03 -0700 (Fri, 14 Oct 2011) $
00008  *          $Revision: 191 $
00009  *
00010  *  Copyright (c) 2009-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 /*************************************************************************************************/
00023 #ifndef CFG_STACK_H
00024 #define CFG_STACK_H
00025 
00026 
00027 #ifdef __cplusplus
00028 extern "C" {
00029 #endif
00030 
00031 /**************************************************************************************************
00032   HCI
00033 **************************************************************************************************/
00034 
00035 /*! Vendor specific targets */
00036 #define HCI_VS_GENERIC        0
00037 #define HCI_VS_EMM            1
00038 
00039 /*! Vendor specific target configuration */
00040 #ifndef HCI_VS_TARGET
00041 #define HCI_VS_TARGET HCI_VS_GENERIC
00042 #endif
00043 
00044 /**************************************************************************************************
00045   DM
00046 **************************************************************************************************/
00047 
00048 /*! Maximum number of connections */
00049 #ifndef DM_CONN_MAX
00050 #define DM_CONN_MAX 3
00051 #endif
00052 
00053 /**************************************************************************************************
00054   L2C
00055 **************************************************************************************************/
00056 
00057 /**************************************************************************************************
00058   ATT
00059 **************************************************************************************************/
00060 
00061 /**************************************************************************************************
00062   SMP
00063 **************************************************************************************************/
00064 
00065 
00066 
00067 #ifdef __cplusplus
00068 };
00069 #endif
00070 
00071 #endif /* CFG_STACK_H */