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

Dependencies:   BLE_API eMPL_MPU6050 mbed nRF51822

Revision:
3:24e365bd1b97
Parent:
2:b61ddbb8528e
--- a/nRF51822/nordic-sdk/components/ble/common/ble_advdata_parser.c	Thu Nov 05 02:46:37 2015 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,24 +0,0 @@
-#include "ble_advdata_parser.h"
-
-uint32_t ble_advdata_parser_field_find(uint8_t    type,
-                                       uint8_t  * p_advdata,
-                                       uint8_t  * len,
-                                       uint8_t ** pp_field_data)
-{
-    uint32_t index = 0;
-
-    while (index < *len)
-    {
-        uint8_t field_length = p_advdata[index];
-        uint8_t field_type   = p_advdata[index + 1];
-
-        if (field_type == type)
-        {
-            *pp_field_data = &p_advdata[index + 2];
-            *len           = field_length - 1;
-            return NRF_SUCCESS;
-        }
-        index += field_length + 1;
-    }
-    return NRF_ERROR_NOT_FOUND;
-}
\ No newline at end of file