Nordic stack and drivers for the mbed BLE API

Fork of nRF51822 by Nordic Semiconductor

Committer:
todotani
Date:
Fri Sep 05 14:20:55 2014 +0000
Revision:
61:214f61f4d5f8
Parent:
37:c29c330d942c
BLE_Health_Thermometer for mbed HRM1017 with BLE library 0.1.0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 0:eff01767de02 1 /* Copyright (c) 2012 Nordic Semiconductor. All Rights Reserved.
bogdanm 0:eff01767de02 2 *
bogdanm 0:eff01767de02 3 * The information contained herein is property of Nordic Semiconductor ASA.
bogdanm 0:eff01767de02 4 * Terms and conditions of usage are described in detail in NORDIC
bogdanm 0:eff01767de02 5 * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
bogdanm 0:eff01767de02 6 *
bogdanm 0:eff01767de02 7 * Licensees are granted free, non-transferable use of the information. NO
bogdanm 0:eff01767de02 8 * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
bogdanm 0:eff01767de02 9 * the file.
bogdanm 0:eff01767de02 10 */
bogdanm 0:eff01767de02 11
bogdanm 0:eff01767de02 12 /** @file
bogdanm 0:eff01767de02 13 *
bogdanm 0:eff01767de02 14 * @defgroup ble_radio_notification Radio Notification Event Handler
bogdanm 0:eff01767de02 15 * @{
bogdanm 0:eff01767de02 16 * @ingroup ble_sdk_lib
bogdanm 0:eff01767de02 17 * @brief Module for propagating Radio Notification events to the application.
bogdanm 0:eff01767de02 18 */
bogdanm 0:eff01767de02 19
bogdanm 0:eff01767de02 20 #ifndef BLE_RADIO_NOTIFICATION_H__
bogdanm 0:eff01767de02 21 #define BLE_RADIO_NOTIFICATION_H__
bogdanm 0:eff01767de02 22
bogdanm 0:eff01767de02 23 #include <stdint.h>
bogdanm 0:eff01767de02 24 #include <stdbool.h>
bogdanm 0:eff01767de02 25 #include "nrf_soc.h"
bogdanm 0:eff01767de02 26
bogdanm 0:eff01767de02 27 /**@brief Application radio notification event handler type. */
bogdanm 0:eff01767de02 28 typedef void (*ble_radio_notification_evt_handler_t) (bool radio_active);
bogdanm 0:eff01767de02 29
bogdanm 0:eff01767de02 30 /**@brief Function for initializing the Radio Notification module.
bogdanm 0:eff01767de02 31 *
bogdanm 0:eff01767de02 32 * @param[in] irq_priority Interrupt priority for the Radio Notification interrupt handler.
bogdanm 0:eff01767de02 33 * @param[in] distance The time from an Active event until the radio is activated.
bogdanm 0:eff01767de02 34 * @param[in] evt_handler Handler to be executed when a radio notification event has been
bogdanm 0:eff01767de02 35 * received.
bogdanm 0:eff01767de02 36 *
bogdanm 0:eff01767de02 37 * @return NRF_SUCCESS on successful initialization, otherwise an error code.
bogdanm 0:eff01767de02 38 */
bogdanm 0:eff01767de02 39 uint32_t ble_radio_notification_init(nrf_app_irq_priority_t irq_priority,
bogdanm 0:eff01767de02 40 nrf_radio_notification_distance_t distance,
bogdanm 0:eff01767de02 41 ble_radio_notification_evt_handler_t evt_handler);
bogdanm 0:eff01767de02 42
bogdanm 0:eff01767de02 43 #endif // BLE_RADIO_NOTIFICATION_H__
bogdanm 0:eff01767de02 44
bogdanm 0:eff01767de02 45 /** @} */