BLE API as used in the blog entry.
Dependents: BLE_iBeacon_Exercise
Fork of BLE_API_Native by
hw/BLEDevice.h@0:4c3097c65247, 2014-02-06 (annotated)
- Committer:
- ktownsend
- Date:
- Thu Feb 06 11:51:06 2014 +0000
- Revision:
- 0:4c3097c65247
Native mode drivers
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
ktownsend | 0:4c3097c65247 | 1 | /* mbed Microcontroller Library |
ktownsend | 0:4c3097c65247 | 2 | * Copyright (c) 2006-2013 ARM Limited |
ktownsend | 0:4c3097c65247 | 3 | * |
ktownsend | 0:4c3097c65247 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
ktownsend | 0:4c3097c65247 | 5 | * you may not use this file except in compliance with the License. |
ktownsend | 0:4c3097c65247 | 6 | * You may obtain a copy of the License at |
ktownsend | 0:4c3097c65247 | 7 | * |
ktownsend | 0:4c3097c65247 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
ktownsend | 0:4c3097c65247 | 9 | * |
ktownsend | 0:4c3097c65247 | 10 | * Unless required by applicable law or agreed to in writing, software |
ktownsend | 0:4c3097c65247 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
ktownsend | 0:4c3097c65247 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
ktownsend | 0:4c3097c65247 | 13 | * See the License for the specific language governing permissions and |
ktownsend | 0:4c3097c65247 | 14 | * limitations under the License. |
ktownsend | 0:4c3097c65247 | 15 | */ |
ktownsend | 0:4c3097c65247 | 16 | |
ktownsend | 0:4c3097c65247 | 17 | #ifndef __BLE_DEVICE_H__ |
ktownsend | 0:4c3097c65247 | 18 | #define __BLE_DEVICE_H__ |
ktownsend | 0:4c3097c65247 | 19 | |
ktownsend | 0:4c3097c65247 | 20 | #include "mbed.h" |
ktownsend | 0:4c3097c65247 | 21 | #include "blecommon.h" |
ktownsend | 0:4c3097c65247 | 22 | #include "hw/Gap.h" |
ktownsend | 0:4c3097c65247 | 23 | #include "hw/GattServer.h" |
ktownsend | 0:4c3097c65247 | 24 | |
ktownsend | 0:4c3097c65247 | 25 | /**************************************************************************/ |
ktownsend | 0:4c3097c65247 | 26 | /*! |
ktownsend | 0:4c3097c65247 | 27 | \brief |
ktownsend | 0:4c3097c65247 | 28 | The base class used to abstract away BLE capable radio transceivers |
ktownsend | 0:4c3097c65247 | 29 | or SOCs, to enable this BLE API to work with any radio transparently. |
ktownsend | 0:4c3097c65247 | 30 | */ |
ktownsend | 0:4c3097c65247 | 31 | /**************************************************************************/ |
ktownsend | 0:4c3097c65247 | 32 | class BLEDevice |
ktownsend | 0:4c3097c65247 | 33 | { |
ktownsend | 0:4c3097c65247 | 34 | public: |
ktownsend | 0:4c3097c65247 | 35 | virtual Gap& getGap() = 0; |
ktownsend | 0:4c3097c65247 | 36 | virtual GattServer& getGattServer() = 0; |
ktownsend | 0:4c3097c65247 | 37 | virtual ble_error_t init() = 0; |
ktownsend | 0:4c3097c65247 | 38 | virtual ble_error_t reset(void) = 0; |
ktownsend | 0:4c3097c65247 | 39 | }; |
ktownsend | 0:4c3097c65247 | 40 | |
ktownsend | 0:4c3097c65247 | 41 | #endif |