Lightly modified version of the BLE stack, that doesn't bring up a DFUService by default... as we have our own.
Fork of BLE_API by
services/URIBeacon2Service.h
- Committer:
- rgrover1
- Date:
- 2014-11-28
- Revision:
- 149:6a7666d72a83
- Parent:
- 148:0072d73e966f
- Child:
- 150:aa2d70369df0
File content as of revision 149:6a7666d72a83:
/* mbed Microcontroller Library * Copyright (c) 2006-2013 ARM Limited * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef __BLE_URI_BEACON_2_SERVICE_H__ #define __BLE_URI_BEACON_2_SERVICE_H__ #include "BLEDevice.h" class URIBeacon2Service { public: // ee0c2080-8786-40ba-ab96-99b91ac981d8 URIBeacon2Service(BLEDevice &ble_, const char *urldata, size_t sizeofURLData) : ble(ble_), payloadIndex(0), payload() { if ((sizeofURLData + 4) > 24) { return; } const uint8_t BEACON_UUID[] = {0xD8, 0xFE}; payload[payloadIndex++] = BEACON_UUID[0]; payload[payloadIndex++] = BEACON_UUID[1]; payload[payloadIndex++] = 0x00; /* flags */ payload[payloadIndex++] = 0x20; /* power */ size_t encodedBytes = encodeURIData(urldata, sizeofURLData); ble.accumulateAdvertisingPayload(GapAdvertisingData::COMPLETE_LIST_16BIT_SERVICE_IDS, BEACON_UUID, sizeof(BEACON_UUID)); ble.accumulateAdvertisingPayload(GapAdvertisingData::SERVICE_DATA, payload, encodedBytes + 4); } private: size_t encodeURIData(const char *urldata, size_t sizeofURLData) { if (sizeofURLData == 0) { return 0; } size_t encodedBytes = encodePrefix(urldata, sizeofURLData); /* memcpy the rest for now. */ memcpy(&payload[payloadIndex], urldata, sizeofURLData); encodedBytes += sizeofURLData; return encodedBytes; } size_t encodePrefix(const char *&urldata, size_t &sizeofURLData) { const char *prefixes[] = { "http://www.", "https://www.", "http://", "https://", "urn:uuid:" }; size_t encodedBytes = 0; const size_t NUM_PREFIXES = sizeof(prefixes) / sizeof(char *); for (unsigned i = 0; i < NUM_PREFIXES; i++) { size_t prefixLen = strlen(prefixes[i]); if (strncmp(urldata, prefixes[i], prefixLen) == 0) { payload[payloadIndex++] = i; encodedBytes = 1; urldata += prefixLen; sizeofURLData -= prefixLen; break; } } return encodedBytes; } // URIBeacon2Service(BLEDevice &_ble, uint8_t level = 100) : // ble(_ble), // batteryLevel(level), // batteryLevelCharacteristic(GattCharacteristic::UUID_BATTERY_LEVEL_CHAR, &batteryLevel, sizeof(batteryLevel), sizeof(batteryLevel), // GattCharacteristic::BLE_GATT_CHAR_PROPERTIES_READ | GattCharacteristic::BLE_GATT_CHAR_PROPERTIES_NOTIFY) { // static bool serviceAdded = false; /* We should only ever need to add the heart rate service once. */ // if (serviceAdded) { // return; // } // GattCharacteristic *charTable[] = {&batteryLevelCharacteristic}; // GattService batteryService(GattService::UUID_BATTERY_SERVICE, charTable, sizeof(charTable) / sizeof(GattCharacteristic *)); // ble.addService(batteryService); // serviceAdded = true; // } // private: static const size_t MAX_SIZEOF_PAYLOAD = 32; /* TODO */ private: BLEDevice &ble; size_t payloadIndex; uint8_t payload[MAX_SIZEOF_PAYLOAD]; // uint8_t batteryLevel; // GattCharacteristic batteryLevelCharacteristic; }; #endif /* #ifndef __BLE_URI_BEACON_2_SERVICE_H__*/