6/22 上下往復完成版

Dependencies:   mbed

Fork of BLE_WallbotBLE_Challenge_byYUTAKA3 by Maiko Matsumoto

Committer:
Dyotty
Date:
Fri Jun 29 04:13:37 2018 +0000
Revision:
15:e98de98d9328
Parent:
0:76dfa9657d9d
6/28 ??????

Who changed what in which revision?

UserRevisionLine numberNew 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 #include "BLEDevice.h"
jksoft 0:76dfa9657d9d 18
jksoft 0:76dfa9657d9d 19 #if defined(TARGET_OTA_ENABLED)
jksoft 0:76dfa9657d9d 20 #include "DFUService.h"
jksoft 0:76dfa9657d9d 21 #endif
jksoft 0:76dfa9657d9d 22
jksoft 0:76dfa9657d9d 23 ble_error_t
jksoft 0:76dfa9657d9d 24 BLEDevice::init()
jksoft 0:76dfa9657d9d 25 {
jksoft 0:76dfa9657d9d 26 ble_error_t err = transport->init();
jksoft 0:76dfa9657d9d 27 if (err != BLE_ERROR_NONE) {
jksoft 0:76dfa9657d9d 28 return err;
jksoft 0:76dfa9657d9d 29 }
jksoft 0:76dfa9657d9d 30
jksoft 0:76dfa9657d9d 31 /* Platforms enabled for DFU should introduce the DFU Service into
jksoft 0:76dfa9657d9d 32 * applications automatically. */
jksoft 0:76dfa9657d9d 33 #if defined(TARGET_OTA_ENABLED)
jksoft 0:76dfa9657d9d 34 static DFUService dfu(*this); // defined static so that the object remains alive
jksoft 0:76dfa9657d9d 35 #endif // TARGET_OTA_ENABLED
jksoft 0:76dfa9657d9d 36
jksoft 0:76dfa9657d9d 37 return BLE_ERROR_NONE;
jksoft 0:76dfa9657d9d 38 }