To get started with Seeed Tiny BLE, include detecting motion, button and battery level.

Dependencies:   BLE_API eMPL_MPU6050 mbed nRF51822

Committer:
yihui
Date:
Wed Apr 22 07:47:17 2015 +0000
Revision:
1:fc2f9d636751
update libraries; ; delete nRF51822/nordic-sdk/components/gpiote/app_gpiote.c to solve GPIOTE_IRQHandler multiply defined issue. temperarily change nRF51822 library to folder

Who changed what in which revision?

UserRevisionLine numberNew contents of line
yihui 1:fc2f9d636751 1 /* Copyright (c) 2013 Nordic Semiconductor. All Rights Reserved.
yihui 1:fc2f9d636751 2 *
yihui 1:fc2f9d636751 3 * The information contained herein is property of Nordic Semiconductor ASA.
yihui 1:fc2f9d636751 4 * Terms and conditions of usage are described in detail in NORDIC
yihui 1:fc2f9d636751 5 * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
yihui 1:fc2f9d636751 6 *
yihui 1:fc2f9d636751 7 * Licensees are granted free, non-transferable use of the information. NO
yihui 1:fc2f9d636751 8 * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
yihui 1:fc2f9d636751 9 * the file.
yihui 1:fc2f9d636751 10 *
yihui 1:fc2f9d636751 11 */
yihui 1:fc2f9d636751 12
yihui 1:fc2f9d636751 13 /** @cond */
yihui 1:fc2f9d636751 14 /**@file
yihui 1:fc2f9d636751 15 *
yihui 1:fc2f9d636751 16 * @ingroup experimental_api
yihui 1:fc2f9d636751 17 * @defgroup sdk_common SDK Common Header
yihui 1:fc2f9d636751 18 * @breif All common headers needed for SDK examples will be included here so that application
yihui 1:fc2f9d636751 19 * developer does not have to include headers on him/herself.
yihui 1:fc2f9d636751 20 * @{
yihui 1:fc2f9d636751 21 */
yihui 1:fc2f9d636751 22
yihui 1:fc2f9d636751 23 #ifndef SDK_COMMON_H__
yihui 1:fc2f9d636751 24 #define SDK_COMMON_H__
yihui 1:fc2f9d636751 25
yihui 1:fc2f9d636751 26 #include <stdint.h>
yihui 1:fc2f9d636751 27 #include <stdbool.h>
yihui 1:fc2f9d636751 28 #include <string.h>
yihui 1:fc2f9d636751 29 #include "nordic_common.h"
yihui 1:fc2f9d636751 30 #include "compiler_abstraction.h"
yihui 1:fc2f9d636751 31 #include "sdk_os.h"
yihui 1:fc2f9d636751 32 #include "sdk_errors.h"
yihui 1:fc2f9d636751 33 #include "app_util.h"
yihui 1:fc2f9d636751 34
yihui 1:fc2f9d636751 35 /** @} */
yihui 1:fc2f9d636751 36 /** @endcond */
yihui 1:fc2f9d636751 37 #endif // SDK_COMMON_H__
yihui 1:fc2f9d636751 38