テスト用

Fork of nRF51822 by Nordic Semiconductor

Committer:
Rohit Grover
Date:
Fri Sep 26 14:46:19 2014 +0100
Revision:
69:936d81c963fe
Parent:
37:c29c330d942c
Release 0.2.1
=============

Features
~~~~~~~~

- Turn on the service-changed characteristic by default.

Bugfixes
~~~~~~~~

- Raised the maximum number of supported characteristics/descriptors to 24
(was 10 previously). We're beginning to find services like Device-
Information with several characteristics populated.

Compatibility
~~~~~~~~~~~~~

Works with 0.2.0 of BLE_API.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 0:eff01767de02 1 #ifndef BLE_ADVDATA_PARSER_H_
bogdanm 0:eff01767de02 2 #define BLE_ADVDATA_PARSER_H_
bogdanm 0:eff01767de02 3
bogdanm 0:eff01767de02 4 #include "ble_advdata.h"
bogdanm 0:eff01767de02 5
bogdanm 0:eff01767de02 6 uint32_t ble_advdata_parse(uint8_t * p_data, uint8_t len, ble_advdata_t * advdata);
bogdanm 0:eff01767de02 7 uint32_t ble_advdata_parser_field_find(uint8_t type, uint8_t * p_advdata, uint8_t * len, uint8_t ** pp_field_data);
bogdanm 0:eff01767de02 8
bogdanm 0:eff01767de02 9 #endif