WallbotBLE_Challenge ホワイトボード消し版
Fork of BLE_WallbotBLE_Challenge by
nRF51822/btle/custom/custom_helper.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 _CUSTOM_HELPER_H_ |
jksoft | 0:76dfa9657d9d | 18 | #define _CUSTOM_HELPER_H_ |
jksoft | 0:76dfa9657d9d | 19 | |
jksoft | 0:76dfa9657d9d | 20 | #ifdef __cplusplus |
jksoft | 0:76dfa9657d9d | 21 | extern "C" { |
jksoft | 0:76dfa9657d9d | 22 | #endif |
jksoft | 0:76dfa9657d9d | 23 | |
jksoft | 0:76dfa9657d9d | 24 | #include "common/common.h" |
jksoft | 0:76dfa9657d9d | 25 | #include "ble.h" |
jksoft | 0:76dfa9657d9d | 26 | #include "UUID.h" |
jksoft | 0:76dfa9657d9d | 27 | |
jksoft | 0:76dfa9657d9d | 28 | uint8_t custom_add_uuid_base(uint8_t const *const p_uuid_base); |
jksoft | 0:76dfa9657d9d | 29 | error_t custom_decode_uuid(uint8_t const *const p_uuid_base, |
jksoft | 0:76dfa9657d9d | 30 | ble_uuid_t *p_uuid); |
jksoft | 0:76dfa9657d9d | 31 | ble_uuid_t custom_convert_to_nordic_uuid(const UUID &uuid); |
jksoft | 0:76dfa9657d9d | 32 | |
jksoft | 0:76dfa9657d9d | 33 | error_t custom_add_in_characteristic(uint16_t service_handle, |
jksoft | 0:76dfa9657d9d | 34 | ble_uuid_t *p_uuid, |
jksoft | 0:76dfa9657d9d | 35 | uint8_t properties, |
jksoft | 0:76dfa9657d9d | 36 | uint8_t *p_data, |
jksoft | 0:76dfa9657d9d | 37 | uint16_t min_length, |
jksoft | 0:76dfa9657d9d | 38 | uint16_t max_length, |
jksoft | 0:76dfa9657d9d | 39 | ble_gatts_char_handles_t *p_char_handle); |
jksoft | 0:76dfa9657d9d | 40 | |
jksoft | 0:76dfa9657d9d | 41 | error_t custom_add_in_descriptor(uint16_t char_handle, |
jksoft | 0:76dfa9657d9d | 42 | ble_uuid_t *p_uuid, |
jksoft | 0:76dfa9657d9d | 43 | uint8_t *p_data, |
jksoft | 0:76dfa9657d9d | 44 | uint16_t min_length, |
jksoft | 0:76dfa9657d9d | 45 | uint16_t max_length, |
jksoft | 0:76dfa9657d9d | 46 | uint16_t *p_desc_handle); |
jksoft | 0:76dfa9657d9d | 47 | |
jksoft | 0:76dfa9657d9d | 48 | #ifdef __cplusplus |
jksoft | 0:76dfa9657d9d | 49 | } |
jksoft | 0:76dfa9657d9d | 50 | #endif |
jksoft | 0:76dfa9657d9d | 51 | |
jksoft | 0:76dfa9657d9d | 52 | #endif // ifndef _CUSTOM_HELPER_H_ |