WallbotBLE_Challenge ホワイトボード消し版
Fork of BLE_WallbotBLE_Challenge by
BLE_API/common/BLEDeviceInstanceBase.h@3:f707552ec50a, 2018-06-03 (annotated)
- Committer:
- Dyotty
- Date:
- Sun Jun 03 07:04:34 2018 +0000
- Revision:
- 3:f707552ec50a
- Parent:
- 0:76dfa9657d9d
MPU6050????????
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
jksoft | 0:76dfa9657d9d | 1 | /* mbed Microcontroller Library |
jksoft | 0:76dfa9657d9d | 2 | * Copyright (c) 2006-2013 ARM Limited |
jksoft | 0:76dfa9657d9d | 3 | * |
jksoft | 0:76dfa9657d9d | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
jksoft | 0:76dfa9657d9d | 5 | * you may not use this file except in compliance with the License. |
jksoft | 0:76dfa9657d9d | 6 | * You may obtain a copy of the License at |
jksoft | 0:76dfa9657d9d | 7 | * |
jksoft | 0:76dfa9657d9d | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
jksoft | 0:76dfa9657d9d | 9 | * |
jksoft | 0:76dfa9657d9d | 10 | * Unless required by applicable law or agreed to in writing, software |
jksoft | 0:76dfa9657d9d | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
jksoft | 0:76dfa9657d9d | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
jksoft | 0:76dfa9657d9d | 13 | * See the License for the specific language governing permissions and |
jksoft | 0:76dfa9657d9d | 14 | * limitations under the License. |
jksoft | 0:76dfa9657d9d | 15 | */ |
jksoft | 0:76dfa9657d9d | 16 | |
jksoft | 0:76dfa9657d9d | 17 | #ifndef __BLE_DEVICE_INSTANCE_BASE__ |
jksoft | 0:76dfa9657d9d | 18 | #define __BLE_DEVICE_INSTANCE_BASE__ |
jksoft | 0:76dfa9657d9d | 19 | |
jksoft | 0:76dfa9657d9d | 20 | /** |
jksoft | 0:76dfa9657d9d | 21 | * The interface for the transport object to be created by the target library's |
jksoft | 0:76dfa9657d9d | 22 | * createBLEDeviceInstance(). |
jksoft | 0:76dfa9657d9d | 23 | */ |
jksoft | 0:76dfa9657d9d | 24 | class BLEDeviceInstanceBase |
jksoft | 0:76dfa9657d9d | 25 | { |
jksoft | 0:76dfa9657d9d | 26 | public: |
jksoft | 0:76dfa9657d9d | 27 | virtual const char *getVersion(void) = 0; |
jksoft | 0:76dfa9657d9d | 28 | virtual Gap& getGap() = 0; |
jksoft | 0:76dfa9657d9d | 29 | virtual GattServer& getGattServer() = 0; |
jksoft | 0:76dfa9657d9d | 30 | virtual ble_error_t init(void) = 0; |
jksoft | 0:76dfa9657d9d | 31 | virtual ble_error_t reset(void) = 0; |
jksoft | 0:76dfa9657d9d | 32 | virtual ble_error_t setTxPower(int8_t txPower) = 0; |
jksoft | 0:76dfa9657d9d | 33 | virtual void waitForEvent(void) = 0; |
jksoft | 0:76dfa9657d9d | 34 | }; |
jksoft | 0:76dfa9657d9d | 35 | |
jksoft | 0:76dfa9657d9d | 36 | /** |
jksoft | 0:76dfa9657d9d | 37 | * BLEDevice uses composition to hide an interface object encapsulating the |
jksoft | 0:76dfa9657d9d | 38 | * backend transport. |
jksoft | 0:76dfa9657d9d | 39 | * |
jksoft | 0:76dfa9657d9d | 40 | * The following API is used to create the singleton interface object. An |
jksoft | 0:76dfa9657d9d | 41 | * implementation for this function must be provided by the device-specific |
jksoft | 0:76dfa9657d9d | 42 | * library, otherwise there will be a linker error. |
jksoft | 0:76dfa9657d9d | 43 | */ |
jksoft | 0:76dfa9657d9d | 44 | extern BLEDeviceInstanceBase *createBLEDeviceInstance(void); |
jksoft | 0:76dfa9657d9d | 45 | |
jksoft | 0:76dfa9657d9d | 46 | #endif // ifndef __BLE_DEVICE_INSTANCE_BASE__ |