fork BLE_API to add update adv payload API

Fork of BLE_API by Bluetooth Low Energy

Committer:
rgrover1
Date:
Thu Jul 02 09:06:11 2015 +0100
Revision:
715:6d415ac147aa
Parent:
714:a6130aaa0fd9
Synchronized with git rev 69726547
Author: Rohit Grover
Release 0.3.9
=============

A minor patch to fix a build error introduced by the previous
release. This has to do with certain declarations being made members
of class UUID.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
rgrover1 714:a6130aaa0fd9 1 /* mbed Microcontroller Library
rgrover1 714:a6130aaa0fd9 2 * Copyright (c) 2006-2013 ARM Limited
rgrover1 714:a6130aaa0fd9 3 *
rgrover1 714:a6130aaa0fd9 4 * Licensed under the Apache License, Version 2.0 (the "License");
rgrover1 714:a6130aaa0fd9 5 * you may not use this file except in compliance with the License.
rgrover1 714:a6130aaa0fd9 6 * You may obtain a copy of the License at
rgrover1 714:a6130aaa0fd9 7 *
rgrover1 714:a6130aaa0fd9 8 * http://www.apache.org/licenses/LICENSE-2.0
rgrover1 714:a6130aaa0fd9 9 *
rgrover1 714:a6130aaa0fd9 10 * Unless required by applicable law or agreed to in writing, software
rgrover1 714:a6130aaa0fd9 11 * distributed under the License is distributed on an "AS IS" BASIS,
rgrover1 714:a6130aaa0fd9 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rgrover1 714:a6130aaa0fd9 13 * See the License for the specific language governing permissions and
rgrover1 714:a6130aaa0fd9 14 * limitations under the License.
rgrover1 714:a6130aaa0fd9 15 */
rgrover1 714:a6130aaa0fd9 16
rgrover1 714:a6130aaa0fd9 17 #include "BLEDevice.h"
rgrover1 714:a6130aaa0fd9 18
rgrover1 714:a6130aaa0fd9 19 #if defined(TARGET_OTA_ENABLED)
rgrover1 714:a6130aaa0fd9 20 #include "DFUService.h"
rgrover1 714:a6130aaa0fd9 21 #endif
rgrover1 714:a6130aaa0fd9 22
rgrover1 714:a6130aaa0fd9 23 ble_error_t
rgrover1 714:a6130aaa0fd9 24 BLEDevice::init()
rgrover1 714:a6130aaa0fd9 25 {
rgrover1 714:a6130aaa0fd9 26 ble_error_t err = transport->init();
rgrover1 714:a6130aaa0fd9 27 if (err != BLE_ERROR_NONE) {
rgrover1 714:a6130aaa0fd9 28 return err;
rgrover1 714:a6130aaa0fd9 29 }
rgrover1 714:a6130aaa0fd9 30
rgrover1 714:a6130aaa0fd9 31 /* Platforms enabled for DFU should introduce the DFU Service into
rgrover1 714:a6130aaa0fd9 32 * applications automatically. */
rgrover1 714:a6130aaa0fd9 33 #if defined(TARGET_OTA_ENABLED)
rgrover1 714:a6130aaa0fd9 34 static DFUService dfu(*this); // defined static so that the object remains alive
rgrover1 714:a6130aaa0fd9 35 #endif // TARGET_OTA_ENABLED
rgrover1 714:a6130aaa0fd9 36
rgrover1 714:a6130aaa0fd9 37 return BLE_ERROR_NONE;
rgrover1 714:a6130aaa0fd9 38 }