Maiko Matsumoto / Mbed 2 deprecated BLE_WallbotBLE_Challenge_byYUTAKA3

Dependencies:   mbed

Fork of BLE_WallbotBLE_Challenge_byYUTAKA by Yutaka Yoshida

Committer:
mmmmmmmmma
Date:
Mon Jun 18 08:43:33 2018 +0000
Revision:
12:252acb9c1201
Parent:
0:76dfa9657d9d
6/18 ?????

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jksoft 0:76dfa9657d9d 1 /* Copyright (c) 2013 Nordic Semiconductor. All Rights Reserved.
jksoft 0:76dfa9657d9d 2 *
jksoft 0:76dfa9657d9d 3 * The information contained herein is property of Nordic Semiconductor ASA.
jksoft 0:76dfa9657d9d 4 * Terms and conditions of usage are described in detail in NORDIC
jksoft 0:76dfa9657d9d 5 * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
jksoft 0:76dfa9657d9d 6 *
jksoft 0:76dfa9657d9d 7 * Licensees are granted free, non-transferable use of the information. NO
jksoft 0:76dfa9657d9d 8 * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
jksoft 0:76dfa9657d9d 9 * the file.
jksoft 0:76dfa9657d9d 10 *
jksoft 0:76dfa9657d9d 11 */
jksoft 0:76dfa9657d9d 12
jksoft 0:76dfa9657d9d 13 /**@file
jksoft 0:76dfa9657d9d 14 *
jksoft 0:76dfa9657d9d 15 * @defgroup ble_stack_handler_types Types definitions for BLE support in SoftDevice handler.
jksoft 0:76dfa9657d9d 16 * @{
jksoft 0:76dfa9657d9d 17 * @ingroup softdevice_handler
jksoft 0:76dfa9657d9d 18 * @brief This file contains the declarations of types required for BLE stack support. These
jksoft 0:76dfa9657d9d 19 * types will be defined when the preprocessor define BLE_STACK_SUPPORT_REQD is defined.
jksoft 0:76dfa9657d9d 20 */
jksoft 0:76dfa9657d9d 21
jksoft 0:76dfa9657d9d 22 #ifndef BLE_STACK_HANDLER_TYPES_H__
jksoft 0:76dfa9657d9d 23 #define BLE_STACK_HANDLER_TYPES_H__
jksoft 0:76dfa9657d9d 24
jksoft 0:76dfa9657d9d 25 #ifdef BLE_STACK_SUPPORT_REQD
jksoft 0:76dfa9657d9d 26
jksoft 0:76dfa9657d9d 27 #include <stdlib.h>
jksoft 0:76dfa9657d9d 28 #include "ble.h"
jksoft 0:76dfa9657d9d 29 #include "nrf_sdm.h"
jksoft 0:76dfa9657d9d 30 #include "app_error.h"
jksoft 0:76dfa9657d9d 31 #include "app_scheduler.h"
jksoft 0:76dfa9657d9d 32 #include "app_util.h"
jksoft 0:76dfa9657d9d 33
jksoft 0:76dfa9657d9d 34 #ifdef __cplusplus
jksoft 0:76dfa9657d9d 35 extern "C" {
jksoft 0:76dfa9657d9d 36 #endif // #ifdef __cplusplus
jksoft 0:76dfa9657d9d 37
jksoft 0:76dfa9657d9d 38 #define BLE_STACK_EVT_MSG_BUF_SIZE (sizeof(ble_evt_t) + (GATT_MTU_SIZE_DEFAULT)) /**< Size of BLE event message buffer. This will be provided to the SoftDevice while fetching an event. */
jksoft 0:76dfa9657d9d 39 #define BLE_STACK_HANDLER_SCHED_EVT_SIZE 0 /**< The size of the scheduler event used by SoftDevice handler when passing BLE events using the @ref app_scheduler. */
jksoft 0:76dfa9657d9d 40
jksoft 0:76dfa9657d9d 41 /**@brief Application stack event handler type. */
jksoft 0:76dfa9657d9d 42 typedef void (*ble_evt_handler_t) (ble_evt_t * p_ble_evt);
jksoft 0:76dfa9657d9d 43
jksoft 0:76dfa9657d9d 44 /**@brief Function for registering for BLE events.
jksoft 0:76dfa9657d9d 45 *
jksoft 0:76dfa9657d9d 46 * @details The application should use this function to register for receiving BLE events from
jksoft 0:76dfa9657d9d 47 * the SoftDevice. If the application does not call this function, then any BLE event
jksoft 0:76dfa9657d9d 48 * that may be generated by the SoftDevice will NOT be fetched. Once the application has
jksoft 0:76dfa9657d9d 49 * registered for the events, it is not possible to possible to cancel the registration.
jksoft 0:76dfa9657d9d 50 * However, it is possible to register a different function for handling the events at
jksoft 0:76dfa9657d9d 51 * any point of time.
jksoft 0:76dfa9657d9d 52 *
jksoft 0:76dfa9657d9d 53 * @param[in] ble_evt_handler Function to be called for each received BLE event.
jksoft 0:76dfa9657d9d 54 *
jksoft 0:76dfa9657d9d 55 * @retval NRF_SUCCESS Successful registration.
jksoft 0:76dfa9657d9d 56 * @retval NRF_ERROR_NULL Null pointer provided as input.
jksoft 0:76dfa9657d9d 57 */
jksoft 0:76dfa9657d9d 58 uint32_t softdevice_ble_evt_handler_set(ble_evt_handler_t ble_evt_handler);
jksoft 0:76dfa9657d9d 59
jksoft 0:76dfa9657d9d 60 #else
jksoft 0:76dfa9657d9d 61
jksoft 0:76dfa9657d9d 62 #define BLE_STACK_EVT_MSG_BUF_SIZE 0 /**< Since the BLE stack support is not required, this is equated to 0, so that the @ref softdevice_handler.h can compute the internal event buffer size without having to care for BLE events.*/
jksoft 0:76dfa9657d9d 63 #define BLE_STACK_HANDLER_SCHED_EVT_SIZE 0
jksoft 0:76dfa9657d9d 64
jksoft 0:76dfa9657d9d 65 #endif // BLE_STACK_SUPPORT_REQD
jksoft 0:76dfa9657d9d 66
jksoft 0:76dfa9657d9d 67 #ifdef __cplusplus
jksoft 0:76dfa9657d9d 68 }
jksoft 0:76dfa9657d9d 69 #endif // #ifdef __cplusplus
jksoft 0:76dfa9657d9d 70
jksoft 0:76dfa9657d9d 71 #endif // BLE_STACK_HANDLER_TYPES_H__
jksoft 0:76dfa9657d9d 72
jksoft 0:76dfa9657d9d 73 /** @} */