Toyomasa Watarai / nRF51822

Dependencies:   nrf51-sdk

Fork of nRF51822 by Nordic Semiconductor

Committer:
rgrover1
Date:
Thu Jul 02 09:08:44 2015 +0100
Revision:
362:6fa0d4d555f6
Parent:
344:2a44e5fd26bc
Synchronized with git rev 2716309c
Author: Rohit Grover
Release 0.4.0
=============

This is a major release which introduces the GATT Client functionality. It
aligns with release 0.4.0 of BLE_API.

Enhancements
~~~~~~~~~~~~

* Introduce GattClient. This includes functionality for service-discovery,
connections, and attribute-reads and writes. You'll find a demo program for
LEDBlinker on the mbed.org Bluetooth team page to use the new APIs. Some of
the GATT client functionality hasn't been implemented yet, but the APIs have
been added.

* We've added an implementation for the abstract base class for
SecurityManager. All security related APIs have been moved into that.

* There has been a major cleanup of APIs under BLE. APIs have now been
categorized as belonging to Gap, GattServer, GattClient, or SecurityManager.
There are accessors to get references for Gap, GattServer, GattClient, and
SecurityManager. A former call to ble.setAddress(...) is now expected to be
achieved with ble.gap().setAddress(...).

* We've cleaned up our APIs, and this has resulted in dropping some APIs like
BLE::reset().

* We've also dropped GattServer::initializeGattDatabase(). THis was added at
some point to support controllers where a commit point was needed to
indicate when the application had finished constructing the GATT database.
This API would get called internally before Gap::startAdvertising(). We now
expect the underlying port to do the equivalent of initializeGattDatabase()
implicitly upon Gap::startAdvertising().

* We've added a version of Gap::disconnect() which takes a connection handle.
The previous API (which did not take a connection handle) has been
deprecated; it will still work for situations where there's only a single
active connection. We hold on to that API to allow existing code to migrate
to the new API.

Bugfixes
~~~~~~~~

* None.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
rgrover1 344:2a44e5fd26bc 1 /* mbed Microcontroller Library
rgrover1 344:2a44e5fd26bc 2 * Copyright (c) 2006-2013 ARM Limited
rgrover1 344:2a44e5fd26bc 3 *
rgrover1 344:2a44e5fd26bc 4 * Licensed under the Apache License, Version 2.0 (the "License");
rgrover1 344:2a44e5fd26bc 5 * you may not use this file except in compliance with the License.
rgrover1 344:2a44e5fd26bc 6 * You may obtain a copy of the License at
rgrover1 344:2a44e5fd26bc 7 *
rgrover1 344:2a44e5fd26bc 8 * http://www.apache.org/licenses/LICENSE-2.0
rgrover1 344:2a44e5fd26bc 9 *
rgrover1 344:2a44e5fd26bc 10 * Unless required by applicable law or agreed to in writing, software
rgrover1 344:2a44e5fd26bc 11 * distributed under the License is distributed on an "AS IS" BASIS,
rgrover1 344:2a44e5fd26bc 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rgrover1 344:2a44e5fd26bc 13 * See the License for the specific language governing permissions and
rgrover1 344:2a44e5fd26bc 14 * limitations under the License.
rgrover1 344:2a44e5fd26bc 15 */
rgrover1 344:2a44e5fd26bc 16
rgrover1 344:2a44e5fd26bc 17 #include "nRF51GattClient.h"
rgrover1 344:2a44e5fd26bc 18
rgrover1 344:2a44e5fd26bc 19 nRF51GattClient nRFGattClientSingleton;
rgrover1 344:2a44e5fd26bc 20
rgrover1 344:2a44e5fd26bc 21 nRF51GattClient &
rgrover1 344:2a44e5fd26bc 22 nRF51GattClient::getInstance(void) {
rgrover1 344:2a44e5fd26bc 23 return nRFGattClientSingleton;
rgrover1 344:2a44e5fd26bc 24 }
rgrover1 344:2a44e5fd26bc 25
rgrover1 344:2a44e5fd26bc 26 ble_error_t
rgrover1 344:2a44e5fd26bc 27 nRF51GattClient::launchServiceDiscovery(Gap::Handle_t connectionHandle,
rgrover1 344:2a44e5fd26bc 28 ServiceDiscovery::ServiceCallback_t sc,
rgrover1 344:2a44e5fd26bc 29 ServiceDiscovery::CharacteristicCallback_t cc,
rgrover1 344:2a44e5fd26bc 30 const UUID &matchingServiceUUIDIn,
rgrover1 344:2a44e5fd26bc 31 const UUID &matchingCharacteristicUUIDIn)
rgrover1 344:2a44e5fd26bc 32 {
rgrover1 344:2a44e5fd26bc 33 return discovery.launch(connectionHandle, sc, cc, matchingServiceUUIDIn, matchingCharacteristicUUIDIn);
rgrover1 344:2a44e5fd26bc 34 }