Abraham Marsen / Mbed 2 deprecated Jazz_Hands_Nordic

Dependencies:   mbed

Committer:
Grimmkey
Date:
Thu Apr 30 20:46:27 2015 +0000
Revision:
0:b8221deeaa87
Georgia Institute of Technology ECE 4180 Spring 2015 Jazz Hands project, Nordic nRF51822 half

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Grimmkey 0:b8221deeaa87 1 /* mbed Microcontroller Library
Grimmkey 0:b8221deeaa87 2 * Copyright (c) 2006-2013 ARM Limited
Grimmkey 0:b8221deeaa87 3 *
Grimmkey 0:b8221deeaa87 4 * Licensed under the Apache License, Version 2.0 (the "License");
Grimmkey 0:b8221deeaa87 5 * you may not use this file except in compliance with the License.
Grimmkey 0:b8221deeaa87 6 * You may obtain a copy of the License at
Grimmkey 0:b8221deeaa87 7 *
Grimmkey 0:b8221deeaa87 8 * http://www.apache.org/licenses/LICENSE-2.0
Grimmkey 0:b8221deeaa87 9 *
Grimmkey 0:b8221deeaa87 10 * Unless required by applicable law or agreed to in writing, software
Grimmkey 0:b8221deeaa87 11 * distributed under the License is distributed on an "AS IS" BASIS,
Grimmkey 0:b8221deeaa87 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Grimmkey 0:b8221deeaa87 13 * See the License for the specific language governing permissions and
Grimmkey 0:b8221deeaa87 14 * limitations under the License.
Grimmkey 0:b8221deeaa87 15 */
Grimmkey 0:b8221deeaa87 16
Grimmkey 0:b8221deeaa87 17 #ifndef _BTLE_H_
Grimmkey 0:b8221deeaa87 18 #define _BTLE_H_
Grimmkey 0:b8221deeaa87 19
Grimmkey 0:b8221deeaa87 20 #ifdef __cplusplus
Grimmkey 0:b8221deeaa87 21 extern "C" {
Grimmkey 0:b8221deeaa87 22 #endif
Grimmkey 0:b8221deeaa87 23
Grimmkey 0:b8221deeaa87 24 #include "common/common.h"
Grimmkey 0:b8221deeaa87 25
Grimmkey 0:b8221deeaa87 26 #include "ble_srv_common.h"
Grimmkey 0:b8221deeaa87 27 #include "ble.h"
Grimmkey 0:b8221deeaa87 28
Grimmkey 0:b8221deeaa87 29 error_t btle_init(void);
Grimmkey 0:b8221deeaa87 30
Grimmkey 0:b8221deeaa87 31 #ifdef __cplusplus
Grimmkey 0:b8221deeaa87 32 }
Grimmkey 0:b8221deeaa87 33 #endif
Grimmkey 0:b8221deeaa87 34
Grimmkey 0:b8221deeaa87 35 #endif // ifndef _BTLE_H_