Marco Zecchini / Mbed OS Example_RTOS
Committer:
marcozecchini
Date:
Sat Feb 23 12:13:36 2019 +0000
Revision:
0:9fca2b23d0ba
final commit

Who changed what in which revision?

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