1

Fork of nRF51822 by Nordic Semiconductor

Committer:
rgrover1
Date:
Fri Jun 19 15:55:32 2015 +0100
Revision:
328:f3aa0fddaa79
Child:
332:b054000833d4
Synchronized with git rev 0cc48daf
Author: Rohit Grover
introduce implementation for nRF51GattClient

Who changed what in which revision?

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