Patched version of nrf51822 FOTA compatible driver, with GPTIO disabled, as it clashed with the mbed definitions...

Fork of nRF51822 by Nordic Semiconductor

Committer:
finneyj
Date:
Thu May 21 09:35:07 2015 +0000
Revision:
177:dad139e1e3c4
Parent:
103:138bdc859cc9
Disabled GPTIOE as it conflicts with mbed definitions.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
rgrover1 103:138bdc859cc9 1 #ifndef BLE_ADVDATA_PARSER_H_
rgrover1 103:138bdc859cc9 2 #define BLE_ADVDATA_PARSER_H_
rgrover1 103:138bdc859cc9 3
rgrover1 103:138bdc859cc9 4 #include "ble_advdata.h"
rgrover1 103:138bdc859cc9 5
rgrover1 103:138bdc859cc9 6 uint32_t ble_advdata_parse(uint8_t * p_data, uint8_t len, ble_advdata_t * advdata);
rgrover1 103:138bdc859cc9 7 uint32_t ble_advdata_parser_field_find(uint8_t type, uint8_t * p_advdata, uint8_t * len, uint8_t ** pp_field_data);
rgrover1 103:138bdc859cc9 8
rgrover1 103:138bdc859cc9 9 #endif