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

Fork of nRF51822 by Nordic Semiconductor

Files at this revision

API Documentation at this revision

Comitter:
rgrover1
Date:
Fri May 08 15:33:57 2015 +0100
Parent:
145:9f88997021a1
Child:
147:457a129dfa5e
Commit message:
Synchronized with git rev 4af88a2b
Author: Rohit Grover
update GattCharacteristic::ble_gatt_char_required_security_t to SecurityMode_t

Changed in this revision

btle/custom/custom_helper.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/btle/custom/custom_helper.cpp	Fri May 08 15:33:57 2015 +0100
+++ b/btle/custom/custom_helper.cpp	Fri May 08 15:33:57 2015 +0100
@@ -197,18 +197,18 @@
     @retval     ERROR_NONE        Everything executed normally
 */
 /**************************************************************************/
-error_t custom_add_in_characteristic(uint16_t    service_handle,
-                                     ble_uuid_t *p_uuid,
-                                     uint8_t     properties,
-                                     GattCharacteristic::ble_gatt_char_required_security_t requiredSecurity,
-                                     uint8_t    *p_data,
-                                     uint16_t    min_length,
-                                     uint16_t    max_length,
-                                     const uint8_t *userDescriptionDescriptorValuePtr,
-                                     uint16_t    userDescriptionDescriptorValueLen,
-                                     bool        readAuthorization,
-                                     bool        writeAuthorization,
-                                     ble_gatts_char_handles_t *p_char_handle)
+error_t custom_add_in_characteristic(uint16_t                            service_handle,
+                                     ble_uuid_t                         *p_uuid,
+                                     uint8_t                             properties,
+                                     GattCharacteristic::SecurityMode_t  requiredSecurity,
+                                     uint8_t                            *p_data,
+                                     uint16_t                            min_length,
+                                     uint16_t                            max_length,
+                                     const uint8_t                      *userDescriptionDescriptorValuePtr,
+                                     uint16_t                            userDescriptionDescriptorValueLen,
+                                     bool                                readAuthorization,
+                                     bool                                writeAuthorization,
+                                     ble_gatts_char_handles_t           *p_char_handle)
 {
     /* Characteristic metadata */
     ble_gatts_attr_md_t   cccd_md;