WallbotBLE_Challenge ホワイトボード消し版
Fork of BLE_WallbotBLE_Challenge by
nRF51822/nRF51822n.h@0:76dfa9657d9d, 2014-11-12 (annotated)
- Committer:
- jksoft
- Date:
- Wed Nov 12 02:40:34 2014 +0000
- Revision:
- 0:76dfa9657d9d
????????
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 __NRF51822_H__ |
jksoft | 0:76dfa9657d9d | 18 | #define __NRF51822_H__ |
jksoft | 0:76dfa9657d9d | 19 | |
jksoft | 0:76dfa9657d9d | 20 | #define NRF51 |
jksoft | 0:76dfa9657d9d | 21 | #define DEBUG_NRF_USER |
jksoft | 0:76dfa9657d9d | 22 | #define BLE_STACK_SUPPORT_REQD |
jksoft | 0:76dfa9657d9d | 23 | #define BOARD_PCA10001 |
jksoft | 0:76dfa9657d9d | 24 | |
jksoft | 0:76dfa9657d9d | 25 | #include "mbed.h" |
jksoft | 0:76dfa9657d9d | 26 | #include "blecommon.h" |
jksoft | 0:76dfa9657d9d | 27 | #include "BLEDevice.h" |
jksoft | 0:76dfa9657d9d | 28 | #include "nRF51Gap.h" |
jksoft | 0:76dfa9657d9d | 29 | #include "nRF51GattServer.h" |
jksoft | 0:76dfa9657d9d | 30 | |
jksoft | 0:76dfa9657d9d | 31 | class nRF51822n : public BLEDeviceInstanceBase |
jksoft | 0:76dfa9657d9d | 32 | { |
jksoft | 0:76dfa9657d9d | 33 | public: |
jksoft | 0:76dfa9657d9d | 34 | nRF51822n(void); |
jksoft | 0:76dfa9657d9d | 35 | virtual ~nRF51822n(void); |
jksoft | 0:76dfa9657d9d | 36 | |
jksoft | 0:76dfa9657d9d | 37 | virtual const char *getVersion(void); |
jksoft | 0:76dfa9657d9d | 38 | |
jksoft | 0:76dfa9657d9d | 39 | virtual Gap &getGap() { |
jksoft | 0:76dfa9657d9d | 40 | return nRF51Gap::getInstance(); |
jksoft | 0:76dfa9657d9d | 41 | }; |
jksoft | 0:76dfa9657d9d | 42 | virtual GattServer &getGattServer() { |
jksoft | 0:76dfa9657d9d | 43 | return nRF51GattServer::getInstance(); |
jksoft | 0:76dfa9657d9d | 44 | }; |
jksoft | 0:76dfa9657d9d | 45 | |
jksoft | 0:76dfa9657d9d | 46 | virtual ble_error_t setTxPower(int8_t txPower); |
jksoft | 0:76dfa9657d9d | 47 | |
jksoft | 0:76dfa9657d9d | 48 | virtual ble_error_t init(void); |
jksoft | 0:76dfa9657d9d | 49 | virtual ble_error_t reset(void); |
jksoft | 0:76dfa9657d9d | 50 | virtual void waitForEvent(void); |
jksoft | 0:76dfa9657d9d | 51 | }; |
jksoft | 0:76dfa9657d9d | 52 | |
jksoft | 0:76dfa9657d9d | 53 | #endif |