Bluetooth LE library for Nucleo board

Dependents:   Nucleo_BLE_HeartRate Nucleo_BLE_UART Nucleo_BLE_Demo Nucleo_BLE_UART

Warning: Deprecated!

Supported drivers and applications can be found at this link.

Committer:
sjallouli
Date:
Fri Dec 19 19:52:49 2014 +0000
Revision:
1:79e5c08cbcc7
Parent:
0:289fd2dae405
change the USARTService->write() method access permission to public

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sjallouli 0:289fd2dae405 1 /* mbed Microcontroller Library
sjallouli 0:289fd2dae405 2 * Copyright (c) 2006-2013 ARM Limited
sjallouli 0:289fd2dae405 3 *
sjallouli 0:289fd2dae405 4 * Licensed under the Apache License, Version 2.0 (the "License");
sjallouli 0:289fd2dae405 5 * you may not use this file except in compliance with the License.
sjallouli 0:289fd2dae405 6 * You may obtain a copy of the License at
sjallouli 0:289fd2dae405 7 *
sjallouli 0:289fd2dae405 8 * http://www.apache.org/licenses/LICENSE-2.0
sjallouli 0:289fd2dae405 9 *
sjallouli 0:289fd2dae405 10 * Unless required by applicable law or agreed to in writing, software
sjallouli 0:289fd2dae405 11 * distributed under the License is distributed on an "AS IS" BASIS,
sjallouli 0:289fd2dae405 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
sjallouli 0:289fd2dae405 13 * See the License for the specific language governing permissions and
sjallouli 0:289fd2dae405 14 * limitations under the License.
sjallouli 0:289fd2dae405 15 */
sjallouli 0:289fd2dae405 16
sjallouli 0:289fd2dae405 17 #include "DFUService.h"
sjallouli 0:289fd2dae405 18
sjallouli 0:289fd2dae405 19 const uint8_t DFUServiceBaseUUID[] = {
sjallouli 0:289fd2dae405 20 0x00, 0x00, 0x00, 0x00, 0x12, 0x12, 0xEF, 0xDE,
sjallouli 0:289fd2dae405 21 0x15, 0x23, 0x78, 0x5F, 0xEA, 0xBC, 0xD1, 0x23,
sjallouli 0:289fd2dae405 22 };
sjallouli 0:289fd2dae405 23 const uint16_t DFUServiceShortUUID = 0x1530;
sjallouli 0:289fd2dae405 24 const uint16_t DFUServiceControlCharacteristicShortUUID = 0x1531;
sjallouli 0:289fd2dae405 25 const uint16_t DFUServicePacketCharacteristicShortUUID = 0x1532;
sjallouli 0:289fd2dae405 26
sjallouli 0:289fd2dae405 27 const uint8_t DFUServiceUUID[] = {
sjallouli 0:289fd2dae405 28 0x00, 0x00, (uint8_t)(DFUServiceShortUUID >> 8), (uint8_t)(DFUServiceShortUUID & 0xFF), 0x12, 0x12, 0xEF, 0xDE,
sjallouli 0:289fd2dae405 29 0x15, 0x23, 0x78, 0x5F, 0xEA, 0xBC, 0xD1, 0x23,
sjallouli 0:289fd2dae405 30 };
sjallouli 0:289fd2dae405 31 const uint8_t DFUServiceControlCharacteristicUUID[] = {
sjallouli 0:289fd2dae405 32 0x00, 0x00, (uint8_t)(DFUServiceControlCharacteristicShortUUID >> 8), (uint8_t)(DFUServiceControlCharacteristicShortUUID & 0xFF), 0x12, 0x12, 0xEF, 0xDE,
sjallouli 0:289fd2dae405 33 0x15, 0x23, 0x78, 0x5F, 0xEA, 0xBC, 0xD1, 0x23,
sjallouli 0:289fd2dae405 34 };
sjallouli 0:289fd2dae405 35 const uint8_t DFUServicePacketCharacteristicUUID[] = {
sjallouli 0:289fd2dae405 36 0x00, 0x00, (uint8_t)(DFUServicePacketCharacteristicShortUUID >> 8), (uint8_t)(DFUServicePacketCharacteristicShortUUID & 0xFF), 0x12, 0x12, 0xEF, 0xDE,
sjallouli 0:289fd2dae405 37 0x15, 0x23, 0x78, 0x5F, 0xEA, 0xBC, 0xD1, 0x23,
sjallouli 0:289fd2dae405 38 };
sjallouli 0:289fd2dae405 39
sjallouli 0:289fd2dae405 40 DFUService::ResetPrepare_t DFUService::handoverCallback = NULL;