High level Bluetooth Low Energy API and radio abstraction layer
Fork of BLE_API by
common/BLEDevice.cpp@671:33ec93d25695, 2015-06-19 (annotated)
- Committer:
- rgrover1
- Date:
- Fri Jun 19 15:53:01 2015 +0100
- Revision:
- 671:33ec93d25695
- Parent:
- 567:e4b38e43de7c
- Child:
- 710:b2e1a2660ec2
Synchronized with git rev c89eea7a
Author: Rohit Grover
rename BLEDevice as BLE; BLEDeviceInstanceBase as BLEInstanceBase
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
rgrover1 | 260:ea7f9f14cc15 | 1 | /* mbed Microcontroller Library |
rgrover1 | 260:ea7f9f14cc15 | 2 | * Copyright (c) 2006-2013 ARM Limited |
rgrover1 | 260:ea7f9f14cc15 | 3 | * |
rgrover1 | 260:ea7f9f14cc15 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
rgrover1 | 260:ea7f9f14cc15 | 5 | * you may not use this file except in compliance with the License. |
rgrover1 | 260:ea7f9f14cc15 | 6 | * You may obtain a copy of the License at |
rgrover1 | 260:ea7f9f14cc15 | 7 | * |
rgrover1 | 260:ea7f9f14cc15 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
rgrover1 | 260:ea7f9f14cc15 | 9 | * |
rgrover1 | 260:ea7f9f14cc15 | 10 | * Unless required by applicable law or agreed to in writing, software |
rgrover1 | 260:ea7f9f14cc15 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
rgrover1 | 260:ea7f9f14cc15 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
rgrover1 | 260:ea7f9f14cc15 | 13 | * See the License for the specific language governing permissions and |
rgrover1 | 260:ea7f9f14cc15 | 14 | * limitations under the License. |
rgrover1 | 260:ea7f9f14cc15 | 15 | */ |
rgrover1 | 260:ea7f9f14cc15 | 16 | |
rgrover1 | 671:33ec93d25695 | 17 | #include "BLE.h" |
rgrover1 | 260:ea7f9f14cc15 | 18 | |
rgrover1 | 260:ea7f9f14cc15 | 19 | #if defined(TARGET_OTA_ENABLED) |
rgrover1 | 260:ea7f9f14cc15 | 20 | #include "DFUService.h" |
rgrover1 | 260:ea7f9f14cc15 | 21 | #endif |
rgrover1 | 260:ea7f9f14cc15 | 22 | |
rgrover1 | 260:ea7f9f14cc15 | 23 | ble_error_t |
rgrover1 | 671:33ec93d25695 | 24 | BLE::init() |
rgrover1 | 260:ea7f9f14cc15 | 25 | { |
rgrover1 | 260:ea7f9f14cc15 | 26 | ble_error_t err = transport->init(); |
rgrover1 | 260:ea7f9f14cc15 | 27 | if (err != BLE_ERROR_NONE) { |
rgrover1 | 260:ea7f9f14cc15 | 28 | return err; |
rgrover1 | 260:ea7f9f14cc15 | 29 | } |
rgrover1 | 260:ea7f9f14cc15 | 30 | |
rgrover1 | 260:ea7f9f14cc15 | 31 | /* Platforms enabled for DFU should introduce the DFU Service into |
rgrover1 | 260:ea7f9f14cc15 | 32 | * applications automatically. */ |
rgrover1 | 260:ea7f9f14cc15 | 33 | #if defined(TARGET_OTA_ENABLED) |
rgrover1 | 260:ea7f9f14cc15 | 34 | static DFUService dfu(*this); // defined static so that the object remains alive |
rgrover1 | 260:ea7f9f14cc15 | 35 | #endif // TARGET_OTA_ENABLED |
rgrover1 | 260:ea7f9f14cc15 | 36 | |
rgrover1 | 260:ea7f9f14cc15 | 37 | return BLE_ERROR_NONE; |
rgrover1 | 260:ea7f9f14cc15 | 38 | } |