ble

Dependencies:   HC_SR04_Ultrasonic_Library Servo mbed

Fork of FIP_REV1 by Robotique FIP

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers btle.h Source File

btle.h

00001 /* mbed Microcontroller Library
00002  * Copyright (c) 2006-2013 ARM Limited
00003  *
00004  * Licensed under the Apache License, Version 2.0 (the "License");
00005  * you may not use this file except in compliance with the License.
00006  * You may obtain a copy of the License at
00007  *
00008  *     http://www.apache.org/licenses/LICENSE-2.0
00009  *
00010  * Unless required by applicable law or agreed to in writing, software
00011  * distributed under the License is distributed on an "AS IS" BASIS,
00012  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00013  * See the License for the specific language governing permissions and
00014  * limitations under the License.
00015  */
00016 
00017 #ifndef _BTLE_H_
00018 #define _BTLE_H_
00019 
00020 
00021 #ifdef __cplusplus
00022 extern "C" {
00023 #endif
00024 
00025 #include "cube_hal.h"
00026 #include "hci.h"
00027 #include "bluenrg_hci.h"
00028 #include "hci_internal.h"
00029 #include "bluenrg_hci_internal.h"
00030 #include "gap.h"
00031 #include "gatt_service.h"
00032 #include <stdio.h>
00033 #include <string.h>
00034 
00035 void btle_init(bool isSetAddress);
00036 void User_Process(void);
00037 void setConnectable(void);
00038 
00039 extern uint16_t g_gap_service_handle;
00040 extern uint16_t g_appearance_char_handle;
00041 extern uint16_t g_device_name_char_handle;
00042 
00043 #ifdef __cplusplus
00044     }
00045 #endif
00046 
00047 #endif