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 BlueNRGGattServer.h Source File

BlueNRGGattServer.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 __BLUENRG_GATT_SERVER_H__
00018 #define __BLUENRG_GATT_SERVER_H__
00019 
00020 #include "mbed.h"
00021 #include "blecommon.h"
00022 #include "btle.h"
00023 #include "GattService.h"
00024 #include "public/GattServer.h"
00025 
00026 #define BLE_TOTAL_CHARACTERISTICS 10
00027 
00028 class BlueNRGGattServer : public GattServer
00029 {
00030 public:
00031     static BlueNRGGattServer &getInstance() {
00032         static BlueNRGGattServer m_instance;
00033         return m_instance;
00034     }
00035 
00036     /* Functions that must be implemented from GattServer */
00037     virtual ble_error_t addService(GattService &);
00038     virtual ble_error_t readValue(uint16_t handle, uint8_t buffer[], uint16_t *const lengthP);
00039     virtual ble_error_t updateValue(uint16_t, uint8_t[], uint16_t, bool localOnly = false);
00040     virtual ble_error_t setDeviceName(const uint8_t *deviceName);
00041     virtual ble_error_t getDeviceName(uint8_t *deviceName, unsigned *lengthP);
00042     virtual ble_error_t setAppearance(uint16_t appearance);
00043     virtual ble_error_t getAppearance(uint16_t *appearanceP);    
00044 
00045     /* BlueNRG Functions */
00046     void eventCallback(void);
00047     //void hwCallback(void *pckt);
00048     ble_error_t Read_Request_CB(tHalUint16 handle);
00049     GattCharacteristic* getCharacteristicFromHandle(tHalUint16 charHandle);
00050     
00051 private:
00052 
00053     uint8_t serviceCount;
00054     uint8_t characteristicCount;
00055     tHalUint16 hrmServHandle, hrmCharHandle;
00056     
00057     GattCharacteristic *p_characteristics[BLE_TOTAL_CHARACTERISTICS];
00058     tHalUint16 bleCharacteristicHandles[BLE_TOTAL_CHARACTERISTICS];
00059     
00060     uint8_t *DeviceName;
00061     uint8_t deviceAppearance[2];
00062     
00063     BlueNRGGattServer() {
00064         serviceCount = 0;
00065         characteristicCount = 0;
00066         DeviceName = NULL;
00067     };
00068 
00069     BlueNRGGattServer(BlueNRGGattServer const &);
00070     void operator=(BlueNRGGattServer const &);
00071 };
00072 
00073 #endif