Maxim Integrated Bluetooth LE Library
Dependents: BLE_Thermometer MAXWSNENV_demo
exactLE/stack/include/att_handler.h
- Committer:
- enginerd
- Date:
- 2016-10-06
- Revision:
- 5:5b87f64ce81e
- Parent:
- 0:b562096246b3
File content as of revision 5:5b87f64ce81e:
/*************************************************************************************************/ /*! * \file att_handler.h * * \brief Interface to ATT event handler. * * $Date: 2012-03-29 13:24:04 -0700 (Thu, 29 Mar 2012) $ * $Revision: 287 $ * * Copyright (c) 2009-2016 ARM Limited. All rights reserved. * * SPDX-License-Identifier: LicenseRef-PBL * * Licensed under the Permissive Binary License, Version 1.0 (the "License"); you may not use * this file except in compliance with the License. You may obtain a copy of the License at * * https://www.mbed.com/licenses/PBL-1.0 * * See the License for the specific language governing permissions and limitations under the License. */ /*************************************************************************************************/ #ifndef ATT_HANDLER_H #define ATT_HANDLER_H #include "wsf_os.h" #ifdef __cplusplus extern "C" { #endif /************************************************************************************************** Function Declarations **************************************************************************************************/ /*************************************************************************************************/ /*! * \fn AttHandlerInit * * \brief ATT handler init function called during system initialization. * * \param handlerID WSF handler ID for ATT. * * \return None. */ /*************************************************************************************************/ void AttHandlerInit(wsfHandlerId_t handlerId); /*************************************************************************************************/ /*! * \fn AttHandler * * \brief WSF event handler for ATT. * * \param event WSF event mask. * \param pMsg WSF message. * * \return None. */ /*************************************************************************************************/ void AttHandler(wsfEventMask_t event, wsfMsgHdr_t *pMsg); #ifdef __cplusplus }; #endif #endif /* ATT_HANDLER_H */