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

Fork of nRF51822 by Nordic Semiconductor

Revision:
1:f84abedbf4fb
Parent:
0:eff01767de02
Child:
22:c6ee8136847e
--- a/nRF51GattServer.h	Wed Mar 26 14:38:17 2014 +0000
+++ b/nRF51GattServer.h	Thu Apr 03 01:45:38 2014 +0100
@@ -49,13 +49,11 @@
         void eventCallback(void);
         void hwCallback(ble_evt_t * p_ble_evt);
         
-        uint16_t m_connectionHandle; // TODO move to private
-
     private:
         GattCharacteristic* p_characteristics[BLE_TOTAL_CHARACTERISTICS];
         ble_gatts_char_handles_t nrfCharacteristicHandles[BLE_TOTAL_CHARACTERISTICS];
 
-        nRF51GattServer() { serviceCount = 0; characteristicCount = 0; m_connectionHandle = BLE_CONN_HANDLE_INVALID; };
+        nRF51GattServer() { serviceCount = 0; characteristicCount = 0; };
 
         nRF51GattServer(nRF51GattServer const&);
         void operator=(nRF51GattServer const&);