PBL mbed final

Fork of nRF51822 by Shuta Nakamae

Committer:
rgrover1
Date:
Tue Jul 21 13:23:45 2015 +0100
Revision:
391:8cc3528a1233
Parent:
389:5982ee136c47
Synchronized with git rev 4ec44d75
Author: Andrew Fernandes
Change DiscoveredCharacteristic API to return long or short UUIDs.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
rgrover1 389:5982ee136c47 1 /* mbed Microcontroller Library
rgrover1 389:5982ee136c47 2 * Copyright (c) 2006-2013 ARM Limited
rgrover1 389:5982ee136c47 3 *
rgrover1 389:5982ee136c47 4 * Licensed under the Apache License, Version 2.0 (the "License");
rgrover1 389:5982ee136c47 5 * you may not use this file except in compliance with the License.
rgrover1 389:5982ee136c47 6 * You may obtain a copy of the License at
rgrover1 389:5982ee136c47 7 *
rgrover1 389:5982ee136c47 8 * http://www.apache.org/licenses/LICENSE-2.0
rgrover1 389:5982ee136c47 9 *
rgrover1 389:5982ee136c47 10 * Unless required by applicable law or agreed to in writing, software
rgrover1 389:5982ee136c47 11 * distributed under the License is distributed on an "AS IS" BASIS,
rgrover1 389:5982ee136c47 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rgrover1 389:5982ee136c47 13 * See the License for the specific language governing permissions and
rgrover1 389:5982ee136c47 14 * limitations under the License.
rgrover1 389:5982ee136c47 15 */
rgrover1 389:5982ee136c47 16
rgrover1 389:5982ee136c47 17 #include "nRF51SecurityManager.h"
rgrover1 389:5982ee136c47 18
rgrover1 389:5982ee136c47 19 nRF51SecurityManager &nRF51SecurityManager::getInstance(void) {
rgrover1 389:5982ee136c47 20 static nRF51SecurityManager m_instance;
rgrover1 389:5982ee136c47 21 return m_instance;
rgrover1 389:5982ee136c47 22 }