changed low freq. clock source to IRC

Dependents:   BLE_ANCS_SDAPI_IRC

Fork of nRF51822 by Nordic Semiconductor

Committer:
ytsuboi
Date:
Sun Jul 06 13:08:48 2014 +0000
Revision:
37:8c9bf3bea9db
Parent:
12:e151f55035b8
Child:
22:c6ee8136847e
changed low freq. clock to IRC

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 0:eff01767de02 1 /* mbed Microcontroller Library
bogdanm 0:eff01767de02 2 * Copyright (c) 2006-2013 ARM Limited
bogdanm 0:eff01767de02 3 *
bogdanm 0:eff01767de02 4 * Licensed under the Apache License, Version 2.0 (the "License");
bogdanm 0:eff01767de02 5 * you may not use this file except in compliance with the License.
bogdanm 0:eff01767de02 6 * You may obtain a copy of the License at
bogdanm 0:eff01767de02 7 *
bogdanm 0:eff01767de02 8 * http://www.apache.org/licenses/LICENSE-2.0
bogdanm 0:eff01767de02 9 *
bogdanm 0:eff01767de02 10 * Unless required by applicable law or agreed to in writing, software
bogdanm 0:eff01767de02 11 * distributed under the License is distributed on an "AS IS" BASIS,
bogdanm 0:eff01767de02 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
bogdanm 0:eff01767de02 13 * See the License for the specific language governing permissions and
bogdanm 0:eff01767de02 14 * limitations under the License.
bogdanm 0:eff01767de02 15 */
bogdanm 0:eff01767de02 16
bogdanm 0:eff01767de02 17 #ifndef _CUSTOM_HELPER_H_
bogdanm 0:eff01767de02 18 #define _CUSTOM_HELPER_H_
bogdanm 0:eff01767de02 19
bogdanm 0:eff01767de02 20 #ifdef __cplusplus
Rohit Grover 6:bbb4357dc135 21 extern "C" {
bogdanm 0:eff01767de02 22 #endif
bogdanm 0:eff01767de02 23
bogdanm 0:eff01767de02 24 #include "common/common.h"
bogdanm 0:eff01767de02 25 #include "ble.h"
Rohit Grover 8:2214f1df6a6a 26 #include "UUID.h"
bogdanm 0:eff01767de02 27
Rohit Grover 6:bbb4357dc135 28 uint8_t custom_add_uuid_base(uint8_t const *const p_uuid_base);
Rohit Grover 6:bbb4357dc135 29 error_t custom_decode_uuid(uint8_t const *const p_uuid_base,
Rohit Grover 6:bbb4357dc135 30 ble_uuid_t *p_uuid);
Rohit Grover 12:e151f55035b8 31 ble_uuid_t custom_convert_to_nordic_uuid(const UUID &uuid);
bogdanm 0:eff01767de02 32
Rohit Grover 6:bbb4357dc135 33 error_t custom_add_in_characteristic(uint16_t service_handle,
Rohit Grover 6:bbb4357dc135 34 ble_uuid_t *p_uuid,
Rohit Grover 6:bbb4357dc135 35 uint8_t properties,
Rohit Grover 6:bbb4357dc135 36 uint8_t *p_data,
Rohit Grover 6:bbb4357dc135 37 uint16_t min_length,
Rohit Grover 6:bbb4357dc135 38 uint16_t max_length,
Rohit Grover 6:bbb4357dc135 39 ble_gatts_char_handles_t *p_char_handle);
bogdanm 0:eff01767de02 40
bogdanm 0:eff01767de02 41 #ifdef __cplusplus
bogdanm 0:eff01767de02 42 }
bogdanm 0:eff01767de02 43 #endif
bogdanm 0:eff01767de02 44
Rohit Grover 6:bbb4357dc135 45 #endif // ifndef _CUSTOM_HELPER_H_