| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- /* Copyright (c) 2015 Nordic Semiconductor. All Rights Reserved.
- *
- * The information contained herein is property of Nordic Semiconductor ASA.
- * Terms and conditions of usage are described in detail in NORDIC
- * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
- *
- * Licensees are granted free, non-transferable use of the information. NO
- * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
- * the file.
- */
- /**@file
- *
- * @defgroup ble_sdk_lib_advertising Advertising Module
- * @{
- * @ingroup ble_sdk_lib
- * @brief Module for handling connectable BLE advertising.
- *
- * @details The Advertising Module handles connectable advertising for your application. It can
- * be configured with advertising modes to suit most typical use cases.
- * Your main application can react to changes in advertising modes
- * if an event handler is provided.
- *
- * @note The Advertising Module supports only applications with a single peripheral link.
- *
- * The application must propagate BLE stack events to this module by calling
- * @ref ble_advertising_on_ble_evt() and system events by calling
- * @ref ble_advertising_on_sys_evt().
- *
- */
- #ifndef BLE_ADVERTISING_H__
- #define BLE_ADVERTISING_H__
- #include <stdint.h>
- #include "ble_gattc.h"
- #include "ble.h"
- #include "nrf_error.h"
- #include "ble_advdata.h"
- /**@brief Advertising modes.
- */
- typedef enum
- {
- BLE_ADV_MODE_IDLE, /**< Idle; no connectable advertising is ongoing.*/
- BLE_ADV_MODE_DIRECTED, /**< Directed advertising attempts to connect to the most recently disconnected peer. */
- BLE_ADV_MODE_DIRECTED_SLOW, /**< Directed advertising (low duty cycle) attempts to connect to the most recently disconnected peer. */
- BLE_ADV_MODE_FAST, /**< Fast advertising will connect to any peer device, or filter with a whitelist if one exists. */
- BLE_ADV_MODE_SLOW, /**< Slow advertising is similar to fast advertising. By default, it uses a longer advertising interval and time-out than fast advertising. However, these options are defined by the user. */
- } ble_adv_mode_t;
- /**@brief Advertising events.
- *
- * @details These events are propagated to the main application if a handler was provided during
- * initialization of the Advertising Module. Events for modes that are not used can be
- * ignored. Similarly, BLE_ADV_EVT_WHITELIST_REQUEST and BLE_ADV_EVT_PEER_ADDR_REQUEST
- * can be ignored if whitelist and direct advertising is not used.
- */
- typedef enum
- {
- BLE_ADV_EVT_IDLE, /**< Idle; no connectable advertising is ongoing.*/
- BLE_ADV_EVT_DIRECTED, /**< Direct advertising mode has started. */
- BLE_ADV_EVT_DIRECTED_SLOW, /**< Directed advertising (low duty cycle) has started. */
- BLE_ADV_EVT_FAST, /**< Fast advertising mode has started. */
- BLE_ADV_EVT_SLOW, /**< Slow advertising mode has started.*/
- BLE_ADV_EVT_FAST_WHITELIST, /**< Fast advertising mode using the whitelist has started. */
- BLE_ADV_EVT_SLOW_WHITELIST, /**< Slow advertising mode using the whitelist has started.*/
- BLE_ADV_EVT_WHITELIST_REQUEST, /**< Request a whitelist from the main application. For whitelist advertising to work, the whitelist must be set when this event occurs. */
- BLE_ADV_EVT_PEER_ADDR_REQUEST /**< Request a peer address from the main application. For directed advertising to work, the peer address must be set when this event occurs. */
- } ble_adv_evt_t;
- /**@brief Options for the different advertisement modes.
- *
- * @details This structure is used to enable or disable advertising modes and to configure time-out
- * periods and advertising intervals.
- */
- typedef struct
- {
- bool ble_adv_whitelist_enabled; /**< Enable or disable use of the whitelist. */
- bool ble_adv_directed_enabled; /**< Enable or disable direct advertising mode. */
- bool ble_adv_directed_slow_enabled; /**< Enable or disable direct advertising mode. */
- uint32_t ble_adv_directed_slow_interval; /**< Advertising interval for directed advertising. */
- uint32_t ble_adv_directed_slow_timeout; /**< Time-out (number of tries) for direct advertising. */
- bool ble_adv_fast_enabled; /**< Enable or disable fast advertising mode. */
- uint32_t ble_adv_fast_interval; /**< Advertising interval for fast advertising. */
- uint32_t ble_adv_fast_timeout; /**< Time-out (in seconds) for fast advertising. */
- bool ble_adv_slow_enabled; /**< Enable or disable slow advertising mode. */
- uint32_t ble_adv_slow_interval; /**< Advertising interval for slow advertising. */
- uint32_t ble_adv_slow_timeout; /**< Time-out (in seconds) for slow advertising. */
- }ble_adv_modes_config_t;
- /**@brief BLE advertising event handler type. */
- typedef void (*ble_advertising_evt_handler_t) (ble_adv_evt_t const adv_evt);
- /**@brief BLE advertising error handler type. */
- typedef void (*ble_advertising_error_handler_t) (uint32_t nrf_error);
- /**@brief Initialization parameters for the Advertising Module.
- * @details This structure is used to pass advertising options, advertising data, and an event handler to the Advertising Module during initialization. */
- typedef struct
- {
- ble_adv_modes_config_t options; /**< Parameters for advertising modes.*/
- ble_advdata_t advdata; /**< Advertising data. */
- ble_advertising_evt_handler_t evt_handler; /**< Event handler. */
- }ble_adv_init_t;
- /* Defines to make the mode options easier to set during advertising init.*/
- #define BLE_ADV_DIRECTED_ENABLED true
- #define BLE_ADV_DIRECTED_DISABLED false
- #define BLE_ADV_DIRECTED_SLOW_ENABLED true
- #define BLE_ADV_DIRECTED_SLOW_DISABLED false
- #define BLE_ADV_FAST_ENABLED true
- #define BLE_ADV_FAST_DISABLED false
-
- #define BLE_ADV_SLOW_ENABLED true
- #define BLE_ADV_SLOW_DISABLED false
- #define BLE_ADV_WHITELIST_ENABLED true
- #define BLE_ADV_WHITELIST_DISABLED false
- /**@brief Function for handling BLE events.
- *
- * @details This function must be called from the BLE stack event dispatcher for
- * the module to handle BLE events that are relevant for the Advertising Module.
- *
- * @param[in] p_ble_evt BLE stack event.
- */
- void ble_advertising_on_ble_evt(const ble_evt_t * const p_ble_evt);
- /**@brief Function for handling system events.
- *
- * @details This function must be called to handle system events that are relevant
- * for the Advertising Module. Specifically, the advertising module can not use the
- * softdevice as long as there are pending writes to the flash memory. This
- * event handler is designed to delay advertising until there is no flash operation.
- *
- * @param[in] sys_evt System event.
- */
- void ble_advertising_on_sys_evt(uint32_t sys_evt);
- /**@brief Function for initializing the Advertising Module.
- *
- * @details Encodes the required advertising data and passes it to the stack.
- * Also builds a structure to be passed to the stack when starting advertising.
- * The supplied advertising data is copied to a local structure and is manipulated
- * depending on what advertising modes are started in @ref ble_advertising_start.
- *
- * @param[in] p_advdata Advertising data: name, appearance, discovery flags, and more.
- * @param[in] p_srdata Scan response data: Supplement to advertising data.
- * @param[in] p_config Select which advertising modes and intervals will be utilized.
- * @param[in] evt_handler Event handler that will be called upon advertising events.
- * @param[in] error_handler Error handler that will propogate internal errors to the main applications.
- *
- * @retval NRF_SUCCESS If initialization was successful. Otherwise, an error code is returned.
- */
- uint32_t ble_advertising_init(ble_advdata_t const * p_advdata,
- ble_advdata_t const * p_srdata,
- ble_adv_modes_config_t const * p_config,
- ble_advertising_evt_handler_t const evt_handler,
- ble_advertising_error_handler_t const error_handler);
- /**@brief Function for starting advertising.
- *
- * @details You can start advertising in any of the advertising modes that you enabled
- * during initialization.
- *
- * @param[in] advertising_mode Advertising mode.
- *
- * @retval @ref NRF_SUCCESS On success, else an error code indicating reason for failure.
- * @retval @ref NRF_ERROR_INVALID_STATE
- */
- uint32_t ble_advertising_start(ble_adv_mode_t advertising_mode);
- /**@brief Function for setting the peer address.
- *
- * @details The peer address must be set by the application upon receiving a
- * @ref BLE_ADV_EVT_PEER_ADDR_REQUEST event. Without the peer address, the directed
- * advertising mode will not be run.
- *
- * @param[in] p_peer_addr Pointer to a peer address.
- *
- * @retval @ref NRF_SUCCESS Successfully stored the peer address pointer in the advertising module.
- * @retval @ref NRF_ERROR_INVALID_STATE If a reply was not expected.
- */
- uint32_t ble_advertising_peer_addr_reply(ble_gap_addr_t * p_peer_addr);
- /**@brief Function for setting a whitelist.
- *
- * @details The whitelist must be set by the application upon receiving a
- * @ref BLE_ADV_EVT_WHITELIST_REQUEST event. Without the whitelist, the whitelist
- * advertising for fast and slow modes will not be run.
- *
- * @param[in] p_whitelist Pointer to a whitelist.
- *
- * @retval @ref NRF_SUCCESS Successfully stored pointers to the whitelist into the advertising module.
- * @retval @ref NRF_ERROR_INVALID_STATE If a reply was not expected.
- */
- uint32_t ble_advertising_whitelist_reply(ble_gap_whitelist_t * p_whitelist);
- /**@brief Function for disabling whitelist advertising.
- *
- * @details This function temporarily disables whitelist advertising.
- * Calling this function resets the current time-out countdown.
- *
- * @retval @ref NRF_SUCCESS On success, else an error message propogated from the Softdevice.
- */
- uint32_t ble_advertising_restart_without_whitelist(void);
- /** @} */
- #endif // BLE_ADVERTISING_H__
- /** @} */
|