fdsf

Dependencies:   nrf51-sdk

Fork of nRF51822 by Lancaster University

Files at this revision

API Documentation at this revision

Comitter:
vcoubard
Date:
Mon Jan 11 10:19:22 2016 +0000
Parent:
571:bbf6410b6a89
Child:
573:3dfa6fbff50a
Commit message:
Synchronized with git rev ca8b3d21
Author: Rohit Grover
replace instances of BLEProtocol::AddressType::Type with BLEProtocol::AddressType_t

Changed in this revision

source/btle/btle.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/source/btle/btle.cpp	Mon Jan 11 10:19:22 2016 +0000
+++ b/source/btle/btle.cpp	Mon Jan 11 10:19:22 2016 +0000
@@ -154,8 +154,8 @@
             const ble_gap_addr_t *own  = &p_ble_evt->evt.gap_evt.params.connected.own_addr;
             nRF5xGap::getInstance().processConnectionEvent(handle,
                                                            role,
-                                                           static_cast<BLEProtocol::AddressType::Type>(peer->addr_type), peer->addr,
-                                                           static_cast<BLEProtocol::AddressType::Type>(own->addr_type),  own->addr,
+                                                           static_cast<BLEProtocol::AddressType_t>(peer->addr_type), peer->addr,
+                                                           static_cast<BLEProtocol::AddressType_t>(own->addr_type),  own->addr,
                                                            params);
             break;
         }